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
ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr83939.f90
blob
dfeaac71630c7afcd097cf0e3163ba979f267324
1
! { dg-do compile }
2
elemental
function
f
()
result
(
s
)
! { dg-error "shall not have an ALLOCATABLE or POINTER" }
3
allocatable s
4
allocate
(
s
)
5
s
=
3.5
6
end function
7
8
elemental
function
g
()
result
(
s
)
! { dg-error "shall not have an ALLOCATABLE or POINTER" }
9
pointer
s
10
allocate
(
s
)
11
s
=
3.5
12
end function