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/] [specs/] [sync_iface_test.ads] - Rev 315
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } -- { dg-options "-gnatc" } package Sync_Iface_Test is type Iface is limited interface; procedure Do_Test (Container : in out Iface; Process : access procedure (E : Natural)) is abstract; protected type Buffer is new Iface with overriding procedure Do_Test (Process : access procedure (E : Natural)); end; end;
Go to most recent revision | Compare with Previous | Blame | View Log