| Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %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 | |
| Eli Friedman | a91eb54 | 2009-12-22 02:10:53 +0000 | [diff] [blame] | 25 | NonAggr1 na1 = { 17 }; // expected-error{{non-aggregate type 'struct NonAggr1' cannot be initialized with an initializer list}} |
| 26 | NonAggr2 na2 = { 17 }; // expected-error{{non-aggregate type 'struct NonAggr2' cannot be initialized with an initializer list}} |
| 27 | NonAggr3 na3 = { 17 }; // expected-error{{non-aggregate type 'class NonAggr3' cannot be initialized with an initializer list}} |
| 28 | NonAggr4 na4 = { 17 }; // expected-error{{non-aggregate type 'struct 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}; |