Anders Carlsson | 1b36a2f | 2010-01-24 00:19:41 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s |
Douglas Gregor | 64bffa9 | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 2 | |
| 3 | // Verify that we can't initialize non-aggregates with an initializer |
| 4 | // list. |
| 5 | struct NonAggr1 { |
| 6 | NonAggr1(int) { } |
| 7 | |
| 8 | int m; |
| 9 | }; |
| 10 | |
| 11 | struct Base { }; |
| 12 | struct NonAggr2 : public Base { |
| 13 | int m; |
| 14 | }; |
| 15 | |
| 16 | class NonAggr3 { |
| 17 | int m; |
| 18 | }; |
| 19 | |
Douglas Gregor | 64bffa9 | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 20 | struct NonAggr4 { |
Sebastian Redl | d93f0dd | 2008-11-06 15:59:35 +0000 | [diff] [blame] | 21 | int m; |
| 22 | virtual void f(); |
Douglas Gregor | 64bffa9 | 2008-11-05 16:20:31 +0000 | [diff] [blame] | 23 | }; |
| 24 | |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 25 | NonAggr1 na1 = { 17 }; // expected-error{{non-aggregate type 'NonAggr1' cannot be initialized with an initializer list}} |
| 26 | NonAggr2 na2 = { 17 }; // expected-error{{non-aggregate type 'NonAggr2' cannot be initialized with an initializer list}} |
| 27 | NonAggr3 na3 = { 17 }; // expected-error{{non-aggregate type 'NonAggr3' cannot be initialized with an initializer list}} |
| 28 | NonAggr4 na4 = { 17 }; // expected-error{{non-aggregate type 'NonAggr4' cannot be initialized with an initializer list}} |
Douglas Gregor | bab497b | 2010-01-06 22:06:13 +0000 | [diff] [blame] | 29 | |
| 30 | // PR5817 |
| 31 | typedef int type[][2]; |
| 32 | const type foo = {0}; |
Anders Carlsson | 46f4659 | 2010-01-23 19:55:29 +0000 | [diff] [blame] | 33 | |
| 34 | // Vector initialization. |
| 35 | typedef short __v4hi __attribute__ ((__vector_size__ (8))); |
| 36 | __v4hi v1 = { (void *)1, 2, 3 }; // expected-error {{cannot initialize a vector element of type 'short' with an rvalue of type 'void *'}} |
Anders Carlsson | 784f699 | 2010-01-23 20:13:41 +0000 | [diff] [blame] | 37 | |
| 38 | // Array initialization. |
| 39 | int a[] = { (void *)1 }; // expected-error {{cannot initialize an array element of type 'int' with an rvalue of type 'void *'}} |
Anders Carlsson | 2bbae5d | 2010-01-23 20:20:40 +0000 | [diff] [blame] | 40 | |
| 41 | // Struct initialization. |
| 42 | struct S { int a; } s = { (void *)1 }; // expected-error {{cannot initialize a member subobject of type 'int' with an rvalue of type 'void *'}} |
Anders Carlsson | 1b36a2f | 2010-01-24 00:19:41 +0000 | [diff] [blame] | 43 | |
| 44 | // Check that we're copy-initializing the structs. |
| 45 | struct A { |
| 46 | A(); |
| 47 | A(int); |
| 48 | ~A(); |
| 49 | |
| 50 | A(const A&) = delete; // expected-note 2 {{function has been explicitly marked deleted here}} |
| 51 | }; |
| 52 | |
| 53 | struct B { |
| 54 | A a; |
| 55 | }; |
| 56 | |
| 57 | struct C { |
| 58 | const A& a; |
| 59 | }; |
| 60 | |
| 61 | void f() { |
| 62 | A as1[1] = { }; |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 63 | A as2[1] = { 1 }; // expected-error {{copying array element of type 'A' invokes deleted copy constructor}} |
Anders Carlsson | 1b36a2f | 2010-01-24 00:19:41 +0000 | [diff] [blame] | 64 | |
| 65 | B b1 = { }; |
John McCall | 7c2342d | 2010-03-10 11:27:22 +0000 | [diff] [blame] | 66 | B b2 = { 1 }; // expected-error {{copying member subobject of type 'A' invokes deleted copy constructor}} |
Anders Carlsson | 1b36a2f | 2010-01-24 00:19:41 +0000 | [diff] [blame] | 67 | |
| 68 | C c1 = { 1 }; |
| 69 | } |