repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ipa-cp: Perform operations in the appropriate types (PR 118097)
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
koenig10.C
blob
6a1b9b55be8bf74664d7bc60ab767e6fa99fb5bd
1
// PR c++/47511
2
3
namespace N {
4
template <typename T> bool g( T ) {
5
return true;
6
}
7
struct A { };
8
}
9
template <class T> void f(const T&) {
10
N::A x;
11
g(x) ;
12
}