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/] [str1.adb] - Rev 304
Compare with Previous | Blame | View Log
-- { dg-do compile } procedure str1 is Str : constant string := "--"; generic package Gen is procedure P; end Gen; package body Gen is procedure P is inner : String := Str; begin null; end; end Gen; package Inst is new Gen; begin null; end;