repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2015-05-04 Andrew Sutton <andrew.n.sutton@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
str1.adb
blob
833d0f1d1c293ee0768ba29c0a74be02327c96af
1
-- { dg-do compile }
2
3
procedure
str1
is
4
Str
:
constant
string
:=
"--"
;
5
generic
6
package
Gen
is
7
procedure
P
;
8
end
Gen
;
9
package body
Gen
is
10
procedure
P
is
11
inner
:
String
:=
Str
;
12
begin
13
null
;
14
end
;
15
end
Gen
;
16
17
package
Inst
is new
Gen
;
18
begin
19
null
;
20
end
;