2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / conv11.C
blobf08e756a3ee0bdea4858f9ba14ee93424c538a86
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|mismatched types)" "candidate note" { target *-*-* } 9 }