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
* config/i386/i386.md (paritydi2, paritysi2): New expanders.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
array_constructor_2.f90
blob
ffed1f0fb619df961d29306710eca39ae93aab9e
1
! { dg-do compile }
2
! Check that array constructor delimiters match
3
program
bracket_array_constr_2
4
implicit none
5
integer
::
a
(
4
)
6
a
= (/
1
,
2
,
3
,
4
]
! { dg-error "array constructor" }
7
a
= (/ [
1
,
2
,
3
,
4
/) ]
! { dg-error "array constructor" }
8
end program
bracket_array_constr_2