// RUN: %clang_cc1 -std=c++11 -fsyntax-only -fdiagnostics-show-option -verify %s template struct set{}; struct Value { template void set(T value) {} void resolves_to_same() { Value v; v.set(3.2); } }; void resolves_to_different() { { Value v; // The fact that the next line is a warning rather than an error is an // extension. v.set(3.2); } { int set; // Non-template. Value v; v.set(3.2); } } namespace rdar9915664 { struct A { template void a(); }; struct B : A { }; struct C : A { }; struct D : B, C { A &getA() { return static_cast(*this); } void test_a() { getA().a(); } }; } namespace PR11856 { template T end(T); template void Foo() { T it1; if (it1->end < it1->end) { } } template T *end(T*); class X { }; template void Foo2() { T it1; if (it1->end < it1->end) { } X *x; if (x->end < 7) { // expected-error{{no member named 'end' in 'PR11856::X'}} } } }