Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gfortran.dg
/
class_array_18.f90
blob: 5f2f3dee7f221e59b1b5c1b4ffee8968b1efe4c9 [
file
] [
log
] [
blame
]
!
{
dg
-
do
compile
}
!
!
PR fortran
/
57535
!
program test
implicit
none
type t
integer
::
ii
=
55
end
type t
contains
function
func2
()
class
(
t
),
allocatable
::
func2
(:)
allocate
(
func2
(
3
))
func2
%
ii
=
[
111
,
222
,
333
]
end
function
func2
end
program test