]> granicus.if.org Git - clang/commitdiff
Dependent-sequence initialization of a single element can be direct
authorDouglas Gregor <dgregor@apple.com>
Wed, 4 Apr 2012 04:06:51 +0000 (04:06 +0000)
committerDouglas Gregor <dgregor@apple.com>
Wed, 4 Apr 2012 04:06:51 +0000 (04:06 +0000)
list-initialization. Loosen an over-eager assertion to fix PR12453.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@153995 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaInit.cpp
test/CXX/dcl.decl/dcl.init/dcl.init.list/basic.cpp

index 78328ab88468fcd813f52e8ab44c9c60a1416dc6..be48c7ea18946754be4d7141f7fc7783767a2067 100644 (file)
@@ -4807,7 +4807,8 @@ InitializationSequence::Perform(Sema &S,
                                   move(Args));
     }
     assert(Kind.getKind() == InitializationKind::IK_Copy ||
-           Kind.isExplicitCast());
+           Kind.isExplicitCast() || 
+           Kind.getKind() == InitializationKind::IK_DirectList);
     return ExprResult(Args.release()[0]);
   }
 
index 5ebc22fd82074ce9fe1401fa2b7bd16ff0903e03..b30e0ec7856ba0b8e29458569db8503a3bbd6836 100644 (file)
@@ -1,5 +1,17 @@
-// RUN: %clang_cc1 -fsyntax-only -verify %s
+// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
 
 void f0() {
   int &ir = { 17 }; // expected-error{{reference to type 'int' cannot bind to an initializer list}}
 }
+
+namespace PR12453 {
+  template<typename T>
+  void f(int i) {
+    T x{i}; // expected-error{{non-constant-expression cannot be narrowed from type 'int' to 'float' in initializer list}} \
+    // expected-note{{override this message by inserting an explicit cast}}
+    T y{i}; // expected-error{{non-constant-expression cannot be narrowed from type 'int' to 'float' in initializer list}} \
+    // expected-note{{override this message by inserting an explicit cast}}
+  }
+
+  template void f<float>(int); // expected-note{{in instantiation of function template specialization 'PR12453::f<float>' requested here}}
+}