blob: 4c34447940ff346b0d5944f348eee747ba3ed53e [file] [log] [blame]
Anders Carlsson1b36a2f2010-01-24 00:19:41 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
Douglas Gregor64bffa92008-11-05 16:20:31 +00002
3// Verify that we can't initialize non-aggregates with an initializer
4// list.
5struct NonAggr1 {
6 NonAggr1(int) { }
7
8 int m;
9};
10
11struct Base { };
12struct NonAggr2 : public Base {
13 int m;
14};
15
16class NonAggr3 {
17 int m;
18};
19
Douglas Gregor64bffa92008-11-05 16:20:31 +000020struct NonAggr4 {
Sebastian Redld93f0dd2008-11-06 15:59:35 +000021 int m;
22 virtual void f();
Douglas Gregor64bffa92008-11-05 16:20:31 +000023};
24
John McCall7c2342d2010-03-10 11:27:22 +000025NonAggr1 na1 = { 17 }; // expected-error{{non-aggregate type 'NonAggr1' cannot be initialized with an initializer list}}
26NonAggr2 na2 = { 17 }; // expected-error{{non-aggregate type 'NonAggr2' cannot be initialized with an initializer list}}
27NonAggr3 na3 = { 17 }; // expected-error{{non-aggregate type 'NonAggr3' cannot be initialized with an initializer list}}
28NonAggr4 na4 = { 17 }; // expected-error{{non-aggregate type 'NonAggr4' cannot be initialized with an initializer list}}
Douglas Gregorbab497b2010-01-06 22:06:13 +000029
30// PR5817
31typedef int type[][2];
32const type foo = {0};
Anders Carlsson46f46592010-01-23 19:55:29 +000033
34// Vector initialization.
35typedef 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 Carlsson784f6992010-01-23 20:13:41 +000037
38// Array initialization.
39int a[] = { (void *)1 }; // expected-error {{cannot initialize an array element of type 'int' with an rvalue of type 'void *'}}
Anders Carlsson2bbae5d2010-01-23 20:20:40 +000040
41// Struct initialization.
42struct S { int a; } s = { (void *)1 }; // expected-error {{cannot initialize a member subobject of type 'int' with an rvalue of type 'void *'}}
Anders Carlsson1b36a2f2010-01-24 00:19:41 +000043
44// Check that we're copy-initializing the structs.
45struct 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
53struct B {
54 A a;
55};
56
57struct C {
58 const A& a;
59};
60
61void f() {
62 A as1[1] = { };
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +000063 A as2[1] = { 1 }; // expected-error {{copying array element of type 'A' invokes deleted constructor}}
Anders Carlsson1b36a2f2010-01-24 00:19:41 +000064
65 B b1 = { };
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +000066 B b2 = { 1 }; // expected-error {{copying member subobject of type 'A' invokes deleted constructor}}
Anders Carlsson1b36a2f2010-01-24 00:19:41 +000067
68 C c1 = { 1 };
69}
Douglas Gregorfb87b892010-04-26 21:31:17 +000070
71class Agg {
72public:
73 int i, j;
74};
75
76class AggAgg {
77public:
78 Agg agg1;
79 Agg agg2;
80};
81
82AggAgg aggagg = { 1, 2, 3, 4 };