repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2011-05-23 Tom de Vries <tom@codesourcery.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
extends_8.f03
blob
4af5ab9327c3c72a35d1217e8014ca51a4b99d04
1
! { dg-do compile }
2
!
3
! PR 41784: [OOP] ICE in load_derived_extensions
4
!
5
! Contributed by Salvatore Filippone <sfilippone@uniroma2.it>
6
7
module m
8
type :: A
9
end type
10
type, extends(A) :: B
11
end type
12
end module
13
14
use m, only: A
15
end
16
17
! { dg-final { cleanup-modules "m" } }