2011-05-23 Tom de Vries <tom@codesourcery.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / extends_8.f03
blob4af5ab9327c3c72a35d1217e8014ca51a4b99d04
1 ! { dg-do compile }
3 ! PR 41784: [OOP] ICE in load_derived_extensions
5 ! Contributed by Salvatore Filippone <sfilippone@uniroma2.it>
7 module m
8   type  :: A
9   end type
10   type, extends(A) :: B
11   end type
12 end module
14 use m, only: A
15 end
17 ! { dg-final { cleanup-modules "m" } }