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
re PR c++/84691 (internal compiler error: in poplevel_class, at cp/name-lookup.c...
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
static_initializer.ads
blob
8755c30d17be0367f12850c681ea51c03c521fcb
1
-- { dg-do compile }
2
3
package
static_initializer
is
4
5
type
Vector
is array
(
1
..
3
)
of
Float
;
6
type
Arr
is array
(
Integer
range
1
..
3
)
of
Vector
;
7
8
Pos
:
constant
Arr
:= ((
0.0
,
1.0
,
2.0
),
9
(
0.5
,
1.5
,
2.5
),
10
(
1.0
,
2.0
,
4.0
));
11
12
end
;
13
14
-- { dg-final { scan-assembler-not "elabs" } }