blob: 35db65173f51dd641a52fe6980cb861175cdda1b [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %s
Douglas Gregorcfd8ddc2008-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 Gregorcfd8ddc2008-11-05 16:20:31 +000020struct NonAggr4 {
Sebastian Redlb426f6332008-11-06 15:59:35 +000021 int m;
22 virtual void f();
Douglas Gregorcfd8ddc2008-11-05 16:20:31 +000023};
24
Eli Friedman463e5232009-12-22 02:10:53 +000025NonAggr1 na1 = { 17 }; // expected-error{{non-aggregate type 'struct NonAggr1' cannot be initialized with an initializer list}}
26NonAggr2 na2 = { 17 }; // expected-error{{non-aggregate type 'struct NonAggr2' cannot be initialized with an initializer list}}
27NonAggr3 na3 = { 17 }; // expected-error{{non-aggregate type 'class NonAggr3' cannot be initialized with an initializer list}}
28NonAggr4 na4 = { 17 }; // expected-error{{non-aggregate type 'struct NonAggr4' cannot be initialized with an initializer list}}
Douglas Gregordfdda292010-01-06 22:06:13 +000029
30// PR5817
31typedef int type[][2];
32const type foo = {0};
Anders Carlssond0849252010-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 Carlsson0cf999b2010-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 *'}}