PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / runtime_warning_1.f90
blob64adcdbe366086943b8e211f3e71cd8bf607d241
1 ! Test runtime warnings using non-standard $ editing - PR20006.
3 ! Contributor Francois-Xavier Coudert <coudert@clipper.ens.fr>
5 ! { dg-options "-pedantic" }
6 ! { dg-do run }
8 character(5) c
9 open (42,status='scratch')
10 write (42,'(A,$)') 'abc' ! { dg-warning ".*descriptor" }
11 write (42,'(A)') 'de'
12 rewind (42)
13 read (42,'(A)') c
14 close (42)
15 if (c /= 'abcde') STOP 1
16 end