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
PR debug/66535
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
test_ifaces.adb
blob
5fca1371ed65139c06469b1d3b41d8b49107d80f
1
-- { dg-do run }
2
3
with
Ifaces
;
use
Ifaces
;
4
procedure
test_ifaces
is
5
view2
:
access
Iface_2
'Class
;
6
obj
:
aliased
DT
:= (
m_name
=>
"Abdu"
);
7
begin
8
view2
:=
Iface_2
'Class
(
obj
)
'Access
;
9
view2
.
all
.
op2
;
10
end
;