nvptx, libgfortran: Switch out of "minimal" mode
[official-gcc.git] / gcc / testsuite / gfortran.dg / import8.f90
blob543b0a1d0fa4191bfe0bb7c0bf97932bf842814f
1 ! { dg-do compile }
3 ! PR fortran/44614
7 implicit none
9 type, abstract :: Connection
10 end type Connection
12 abstract interface
13 subroutine generic_desc(self)
14 ! <<< missing IMPORT
15 class(Connection) :: self ! { dg-error "is being used before it is defined" }
16 end subroutine generic_desc
17 end interface
18 end