repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
conv9.C
blob
269e338a36cca11411e6e25427eaed29f09ba82d
1
// PR c++/28557
2
3
struct A
4
{
5
template<typename T> operator T() { return T(); }
6
};
7
8
template<int> void foo()
9
{
10
A().operator int();
11
}
12
13
void bar()
14
{
15
foo<0>();
16
}