c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / extends_8.f03
blob0773f329a02feaf442f3cc3c7dd4db4540ef3466
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