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
/
end_associate_label_1.f90
blob
0affc418740383762f0e15646c849722208c64f2
1
! { dg-do compile }
2
!
3
! PR fortran/50071
4
! A label in an END ASSOCIATE statement was ignored; as a result, a GOTO
5
! to such a label was rejected.
6
!
7
! Contributed by Tobias Burnus <burnus@net-b.de>
8
9
integer
::
i
10
associate
(
j
=>
i
)
11
goto
1
12
print
*,
'Hello'
13
1
end
associate
14
end