Merge from trunk @ 138209
[official-gcc.git] / gcc / testsuite / gfortran.dg / used_types_21.f90
blob04b109f139aaf510d621e684eed3c8c34c9dbd9d
1 ! { dg-do compile }
2 ! Check that pointer components are allowed to empty types.
4 TYPE :: empty_t
5 END TYPE empty_t
7 TYPE :: comp_t
8 TYPE(empty_t), POINTER :: ptr
9 END TYPE comp_t
11 END