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
Wattributes-10.c: Add -fno-common option on hppa*-*-hpux*.
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
concat2.adb
blob
a642d26445063204367a85bd9700ac7469b173f2
1
-- { dg-do compile }
2
-- { dg-options "-O" }
3
4
with
Text_IO
;
use
Text_IO
;
5
6
package body
Concat2
is
7
8
function
Get_Param
return
String
is
9
begin
10
return
""
;
11
end
;
12
13
procedure
Browse
is
14
Mode
:
constant
String
:=
Get_Param
;
15
Mode_Param
:
constant
String
:=
"MODE="
&
Mode
;
16
begin
17
Put_Line
(
Mode_Param
);
18
end
;
19
20
end
Concat2
;