/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / auto-fn13.C
blob96b4b0c64aadd45a45e57270fe5bfd26a23a0967
1 // { dg-do compile { target c++14 } }
3 struct A {
4   template <class T>
5   operator auto() { return T(); } // { dg-warning "auto.*template" }
6 };