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/] [prot1.adb] - Rev 313
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } procedure Prot1 is protected type Prot is procedure Change (x : integer); private Flag : Boolean; end Prot; type Handle is access protected procedure (X : Integer); procedure Manage (Ptr : Handle) is begin null; end; protected body prot is procedure Change (x : integer) is begin null; end; end; Sema : Prot; begin Manage (Sema.Change'Unrestricted_Access); end;
Go to most recent revision | Compare with Previous | Blame | View Log