URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gnat.dg/] [specs/] [sync_iface_test.ads] - Rev 858
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