blob: 6d8dff9bb4b2db3040be73edcf6c36d7ddd209f1 [file] [log] [blame]
// PR c++/44366
// While printing the operand of decltype We were trying to print f as the
// scope of t, causing infinite recursion.
// { dg-options "-std=c++0x" }
template <typename T>
void f(T t, decltype(*t))
{
struct A { void g() {
foo; // { dg-error "foo" }
} };
}