repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
FrontendAda
/
Support
/
unc_constructor.ads
blob
d6f8db50d897d212f0a690bb50f21e94497d4e51
1
package
Unc_Constructor
is
2
type
C
is null record
;
3
type
A
is array
(
Positive
range
<>)
of
C
;
4
A0
:
constant
A
;
5
procedure
P
(
X
:
A
);
6
private
7
A0
:
aliased constant
A
:= (
1
..
0
=> (
null record
));
8
end
;