1! { dg-do compile }
2! { dg-options "-std=f2003" }
3!
4! Fortran 2003 allowes TYPE without components
5! The error message for -std=f95 is tested in
6! gfortran.dg/access_spec_2.f90
7!
8! PR fortran/33188
9!
10type t
11end type
12
13type(t) :: a
14print *, a
15end
16