diff options
Diffstat (limited to 'test/CXX/temp/temp.fct.spec/temp.deduct/p9.cpp')
-rw-r--r-- | test/CXX/temp/temp.fct.spec/temp.deduct/p9.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/CXX/temp/temp.fct.spec/temp.deduct/p9.cpp b/test/CXX/temp/temp.fct.spec/temp.deduct/p9.cpp deleted file mode 100644 index 634da7d1c2..0000000000 --- a/test/CXX/temp/temp.fct.spec/temp.deduct/p9.cpp +++ /dev/null @@ -1,6 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only -verify %s - -template <int> int f(int); // expected-note 2{{candidate}} -template <signed char> int f(int); // expected-note 2{{candidate}} -int i1 = f<1>(0); // expected-error{{ambiguous}} -int i2 = f<1000>(0); // expected-error{{ambiguous}} |