Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto43.C
blob19b6c47cf1230e385452a50f6d488a0a07fc8e05
1 // PR c++/59114
2 // { dg-do compile { target c++11 } }
4 template<int> struct A
6   template<typename T> operator T();
7 };
9 void foo()
11   A<0>().operator auto();  // { dg-error "auto" }