annotate gcc/testsuite/gfortran.dg/constructor_8.f90 @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 ! { dg-do compile }
kono
parents:
diff changeset
2 ! { dg-options "-std=f95" }
kono
parents:
diff changeset
3 !
kono
parents:
diff changeset
4 ! PR fortran/53111
kono
parents:
diff changeset
5 !
kono
parents:
diff changeset
6 ! Contributed by Jacob Middag, reduced by Janus Weil.
kono
parents:
diff changeset
7 !
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 module a
kono
parents:
diff changeset
10 type :: my
kono
parents:
diff changeset
11 real :: x
kono
parents:
diff changeset
12 end type
kono
parents:
diff changeset
13 end module
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 module b
kono
parents:
diff changeset
16 use a
kono
parents:
diff changeset
17 end module
kono
parents:
diff changeset
18
kono
parents:
diff changeset
19 program test
kono
parents:
diff changeset
20 use a
kono
parents:
diff changeset
21 use b
kono
parents:
diff changeset
22 end program