URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [ext1.ads] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
package ext1 is type I_Smiley is interface; procedure Set_Mood (Obj : out I_Smiley) is abstract; -- type Smiley (Max : Positive) is abstract new I_Smiley with record S : String (1 .. Max); end record; -- type Regular_Smiley is new Smiley (3) with null record; overriding procedure Set_Mood (Obj : out Regular_Smiley); end ext1;
Go to most recent revision | Compare with Previous | Blame | View Log