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
* tree-flow-inline.h (op_iter_init): Reject GIMPLE_PHI stmts.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
overload36.C
blob
324d766eaaf196a1d92e4575e103e51f6afe5242
1
// { dg-do run }
2
// Test for subsequence checking in overload resolution.
3
4
class foo {
5
public:
6
void operator <<(char *) { }
7
void operator <<(const char * const &);
8
};
9
10
int
11
main()
12
{
13
char s[20];
14
foo f;
15
f << s;
16
}