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
* intrinsic.c: Add EXECUTE_COMMAND_LINE intrinsic.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
array_constructor_35.f90
blob
fddd1e952b6653ad476d2290300e2edf43156af9
1
! { dg-do compile }
2
! PR42999 bogus error: Parameter 'i' at (1) has not been declared
3
! or is a variable, which does not reduce to a constant expression
4
TYPE
DD
5
INTEGER
::
I
6
END TYPE
DD
7
TYPE
(
DD
) ::
X
(
2
)=(/(
DD
(
I
),
I
=
1
,
2
)/)
8
END
9