blob: 8ed66d1ea36aa6bd40d60f747dfcf81d1f864da2 [file] [log] [blame]
// Testcase for non-dependent auto in templates
// { dg-do compile { target c++11 } }
struct A
{
template<class> void f();
} a;
template <class T>
void g()
{
auto aa = a;
aa.f<int>();
auto p = new auto (a);
p->f<int>();
}
int main()
{
g<double>();
}