blob: 3588b7759e57edbd73c1830b1e16c5cbfe3c547e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
! { dg-do run }
!
! PR [OOP] Compile-time errors on typed allocation and pointer function result assignment
!
! Contributed by Damian Rouson <damian@rouson.net>
module m
implicit none
type foo
end type
type ,extends(foo) :: bar
end type
contains
function new_bar()
class(foo) ,pointer :: new_bar
allocate(bar :: new_bar)
end function
end module
end
! { dg-final { cleanup-modules "m" } }
|