Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / conv11.C
blob57d06af3ee75ed89115a1d5e567b06ed83f116e9
1 int i;
2 struct A
4   template <class T> operator T&() { return i; } // { dg-message "note" }
5 };
7 int main()
9   A().operator int();           // { dg-error "operator int" }
10   // { dg-message "candidate" "candidate note" { target *-*-* } 9 }