PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / constructor_8.f90
blobff0dff7b8685adb8f25ecc85443f63048b784be3
1 ! { dg-do compile }
2 ! { dg-options "-std=f95" }
4 ! PR fortran/53111
6 ! Contributed by Jacob Middag, reduced by Janus Weil.
9 module a
10 type :: my
11 real :: x
12 end type
13 end module
15 module b
16 use a
17 end module
19 program test
20 use a
21 use b
22 end program