2010-11-30 Tobias Burnus <burnus@net-b.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / import8.f90
blob0d88e625b817386327ff0c32be232521093b47a4
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 "has not been declared within the interface" }
16 end subroutine generic_desc
17 end interface
18 end