PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / used_types_18.f90
blob8cb8dab6d3accbc4691739542be85a0c116970c4
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003" }
4 ! Fortran 2003 allowes TYPE without components
5 ! The error message for -std=f95 is tested in
6 ! gfortran.dg/access_spec_2.f90
8 ! PR fortran/33188
10 type t
11 end type
13 type(t) :: a
14 print *, a
15 end