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/] [sync_iface_test.adb] - Rev 327
Go to most recent revision | Compare with Previous | Blame | View Log
-- { dg-do compile } package body Sync_Iface_Test is protected body Buffer is procedure Dummy is begin null; end; end; function First (Obj : Buffer) return Natural is begin return 0; end; procedure Do_Test (Dummy : Natural; Item : Buffer) is Position1 : Natural := First (Item); Position2 : Natural := Item.First; -- Problem here begin null; end; end;
Go to most recent revision | Compare with Previous | Blame | View Log