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
compiler: give error for non-int arguments to make
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
statically_matching.ads
blob
de2ba1b0bea78321b3b74d537df7b2dd381b3844
1
package
Statically_Matching
is
2
type
T1
(
b
:
boolean
)
is tagged null record
;
3
type
T2
is new
T1
(
b
=>
false
)
with private
;
4
private
5
F
:
constant
boolean
:=
false
;
6
type
T2
is new
T1
(
b
=>
F
)
with null record
;
-- OK
7
end
Statically_Matching
;