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/] [discr19.adb] - Rev 399
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } procedure Discr19 is type Arr_Int_T is array (Integer range <>) of Integer; type Abs_Tag_Rec_T (N : Integer; M : Integer) is abstract tagged record Arr_Int : Arr_Int_T (1..M); end record; type Tag_Rec_T (M : Integer) is new Abs_Tag_Rec_T (N => 1, M => M) with null record; begin null; end;
Go to most recent revision | Compare with Previous | Blame | View Log