2 ! Test case prepared by Jerry DeLisle <jvdelisle@gcc.gnu.org>
3 ! Test of decimal="comma" in namelist, checks separators
7 character(len=30) :: str = '&nm a = 1,3; 4, 5; 5; 7; /'
9 read(str,nml=nm,decimal='comma')
10 if (any(a.ne.[ 1.3, 4.0, 5.0, 5.0, 7.0, 0.0 ])) call abort