Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gfortran.dg
/
intrinsic_7.f90
blob: 69bca663b630e6b5af32d586974d93feb5b02d57 [
file
] [
log
] [
blame
]
!
{
dg
-
do
compile
}
!
!
PR fortran
/
46411
!
!
MOVE_ALLOC
and
other non
-
elemental but pure
!
procedures
where
regarded
as
impure
.
!
pure subroutine test
()
integer
,
allocatable
::
a
,
b
allocate
(
a
,
b
)
call move_alloc
(
a
,
b
)
end
subroutine test