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
c++: prvalue of array type [PR111286]
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
opt90d_pkg.ads
blob
a68b224893c7db244edb5025726922a8202c8743
1
package
Opt90d_Pkg
is
2
3
type
Rec
is record
4
D
:
String
(
1
..
12
);
5
C
:
Short_Integer
;
6
A
:
Short_Short_Integer
;
7
B
:
Integer
;
8
end record
;
9
pragma
Pack
(
Rec
);
10
for
Rec
'Alignment
use
1
;
11
12
type
Data
is tagged record
13
R
:
Rec
;
14
end record
;
15
16
end
Opt90d_Pkg
;