URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [extends_8.f03] - Rev 694
Compare with Previous | Blame | View Log
! { dg-do compile }
!
! PR 41784: [OOP] ICE in load_derived_extensions
!
! Contributed by Salvatore Filippone <sfilippone@uniroma2.it>
module m
type :: A
end type
type, extends(A) :: B
end type
end module
use m, only: A
end
! { dg-final { cleanup-modules "m" } }