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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
old-style-prom-1.c
blob
165ff982708675b728e7842554d0519b3bcad963
1
/* Test for prototype followed by old-style definition, as in
2
dremf-type-compat-1.c but with a non-built-in function. */
3
/* { dg-do compile } */
4
/* { dg-options "" } */
5
6
float
f
(
float
,
float
);
7
8
float
9
f
(
x
,
y
)
10
float
x
,
y
;
11
{
12
return
x
+
y
;
13
}