diff options
Diffstat (limited to 'clang/test/SemaCXX/cxx0x-initializer-references.cpp')
-rw-r--r-- | clang/test/SemaCXX/cxx0x-initializer-references.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/cxx0x-initializer-references.cpp b/clang/test/SemaCXX/cxx0x-initializer-references.cpp index 283c32ac2ef..48236fdf76f 100644 --- a/clang/test/SemaCXX/cxx0x-initializer-references.cpp +++ b/clang/test/SemaCXX/cxx0x-initializer-references.cpp @@ -97,3 +97,24 @@ namespace b7891773 { int g(const ptr &); int k = g({ f<int> }); } + +namespace inner_init { + struct A { int n; }; + struct B { A &&r; }; + B b1 { 0 }; // expected-error {{reference to type 'inner_init::A' could not bind to an rvalue of type 'int'}} + B b2 { { 0 } }; + B b3 { { { 0 } } }; // expected-warning {{braces around scalar init}} + + struct C { C(int); }; + struct D { C &&r; }; + D d1 { 0 }; // ok, 0 implicitly converts to C + D d2 { { 0 } }; // ok, { 0 } calls C(0) + D d3 { { { 0 } } }; // ok, { { 0 } } calls C({ 0 }) + D d4 { { { { 0 } } } }; // expected-warning {{braces around scalar init}} + + struct E { explicit E(int); }; // expected-note 2{{here}} + struct F { E &&r; }; + F f1 { 0 }; // expected-error {{could not bind to an rvalue of type 'int'}} + F f2 { { 0 } }; // expected-error {{chosen constructor is explicit}} + F f3 { { { 0 } } }; // expected-error {{chosen constructor is explicit}} +} |