blob: ffbb97f6b8559ef2c740eda2a6775f73aeb75e53 [file] [log] [blame]
// PR c++/47511
// { dg-options -std=c++0x }
namespace N {
template <typename T> bool g( T ) {
return true;
}
struct A { };
}
template <class T> void f(const T&) {
N::A x;
g(x) ;
}