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
Increase timeout factor for hppa*-*-* in gcc.dg/long_branch.c
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr103608.f90
blob
5c37cb78dc6a070e072c23549d33af1f4f594989
1
! { dg-do compile }
2
! { dg-options "-w" }
3
! PR fortran/103608 - ICE in do_intent
4
! Contributed by G.Steinmetz
5
6
program
p
7
implicit none
8
integer
::
i
9
integer
::
x
! { dg-error "Alternate return specifier" }
10
x
(*) =
0
11
do
i
=
1
,
2
12
print
*,
x
(
i
)
! { dg-error "Missing alternate return specifier" }
13
end do
14
end