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
/
data_initialized.f90
blob
56cf059ae36b26075d9a5e77ca05959f4e3a713d
1
! { dg-do compile }
2
! { dg-options "-std=f95" }
3
! Tests fix for PR17737 - already initialized variable cannot appear
4
! in data statement
5
integer
::
i
,
j
=
1
6
data
i
/
0
/
7
data
i
/
0
/
! { dg-error "Extension: re-initialization" }
8
data
j
/
2
/
! { dg-error "Extension: re-initialization" }
9
end
10