URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gnat.dg/] [ext1.ads] - Rev 304
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;