URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [aggr7.adb] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } procedure aggr7 is package P is type T is limited private; type TT is limited private; type TTT is tagged limited private; private type T is limited record Self : access T := T'Unchecked_Access; end record; type TT is tagged limited record Self : access TT := TT'Unchecked_Access; end record; type TTT is tagged limited record Self : access TTT := TTT'Unchecked_Access; end record; end P; package body P is X : T := (Self => <>); XX : TT := (Self => <>); XXX : TTT := (Self => <>); Y : T := (others => <>); YY : TT := (others => <>); YYY : TTT := (others => <>); end P; begin null; end aggr7;
Go to most recent revision | Compare with Previous | Blame | View Log