[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / used_types_26.f90
blob8051930b72b17d018abbbdfa38335970b84c3618
1 ! { dg-do compile }
3 ! Check for ambiguity.
5 ! Added as part of the constructor work (PR fortran/39427).
7 module m
8 type t
9 end type t
10 end module m
12 module m2
13 type t
14 end type t
15 end module m2
17 use m
18 use m2
19 type(t) :: x ! { dg-error "Type name 't' at .1. is ambiguous" }
20 end