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
Fix compilation failure with C++98 compilers
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
parens_2.f90
blob
bc2acd8e71de748aae2fd6cc4a1c862e968ef222
1
! PR 25048
2
! { dg-do compile }
3
! Originally contributed by Joost VandeVondele
4
INTEGER
,
POINTER
::
I
5
CALL
S1
((
I
))
! { dg-error "Actual argument for .i. must be a pointer" }
6
CONTAINS
7
SUBROUTINE
S1
(
I
)
8
INTEGER
,
POINTER
::
I
9
END SUBROUTINE
S1
10
END
11