// RUN: %clang_cc1 -fsyntax-only -std=c++11 -verify %s // expected-no-diagnostics // Test default template arguments for function templates. template void f0(); template void f0(); void g0() { f0(); // okay! } template int &f1(T); float &f1(...); struct HasValue { static const int value = 17; }; void g1() { float &fr = f1(15); int &ir = f1(HasValue()); } namespace PR16689 { template class tuple { public: template constexpr tuple() {} }; template struct a : public X { using X::X; }; auto x = a >(); } namespace PR16975 { template struct is { constexpr operator bool() const { return false; } }; template struct bar { template ()> bar(T); }; struct baz : public bar<> { using bar::bar; }; baz data{0}; }