PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / advance_3.f90
blob7a361d27b1eedc84bc5c6eac409758da2a64742b
1 ! { dg-do compile }
2 subroutine foo
3 real :: a
4 a = 1
5 write(*, '(a)', advance=a) "hello world" ! { dg-error "must be of type CHARACTER" }
6 end subroutine foo
7 subroutine bar
8 write(*, '(a)', advance=5.) "hello world" ! { dg-error "must be of type CHARACTER" }
9 end subroutine bar