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
reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
redecl1.C
blob
1edd548b668900c536f72f5418c05a8812160b48
1
// { dg-do assemble }
2
// GROUPS passed redeclaration
3
inline int min(int x, int y) {return x < y ? x : y;} /* 235 */// { dg-message "" } .*
4
int min(int a, int b);
5
inline int min(int a, int b) {return (a < b)?a:b;}// { dg-error "" } .*