PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / fimplicit_none_1.f90
blob997584e0b3d86ef9f41a685e0dd0587212e3c72f
1 ! { dg-do compile }
2 ! { dg-options "-fimplicit-none" }
3 subroutine s(n) ! { dg-error "has no IMPLICIT type" }
4 character(n) :: c ! { dg-error "Scalar INTEGER expression expected" }
5 c = 'c' ! { dg-error "has no IMPLICIT type" }
6 end