]> granicus.if.org Git - clang/commitdiff
Extra test for r194444.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 12 Nov 2013 02:42:08 +0000 (02:42 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Tue, 12 Nov 2013 02:42:08 +0000 (02:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@194445 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaTemplate/extension-sfinae.cpp [new file with mode: 0644]

diff --git a/test/SemaTemplate/extension-sfinae.cpp b/test/SemaTemplate/extension-sfinae.cpp
new file mode 100644 (file)
index 0000000..b745e0d
--- /dev/null
@@ -0,0 +1,12 @@
+// RUN: %clang_cc1 -triple x86_64-linux-gnu -std=c++11 -verify %s -pedantic-errors -DPEDANTIC
+// RUN: %clang_cc1 -triple x86_64-linux-gnu -std=c++11 -verify %s -Wno-c++11-narrowing
+
+namespace cce_narrowing {
+  decltype(short{123456}) a;
+#if PEDANTIC
+  // expected-error@-2 {{cannot be narrowed}} expected-note@-2 {{cast}}
+#endif
+
+  template<typename T> int f(decltype(T{123456})); // expected-note {{cannot be narrowed}}
+  int b = f<short>(0); // expected-error {{no match}}
+}