blob: ee384e82a48d86e62e2fae45ada174d150a7d9c6 [file] [log] [blame]
// PR c++/105351
template<int> struct A { };
template<class T> A<T::value> f();
template<class T> void f();
struct B { int value; };
int main() {
f<B>();
}