2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %s
|
2008-11-06 00:20:31 +08:00
|
|
|
|
|
|
|
// Verify that we can't initialize non-aggregates with an initializer
|
|
|
|
// list.
|
|
|
|
struct NonAggr1 {
|
|
|
|
NonAggr1(int) { }
|
|
|
|
|
|
|
|
int m;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Base { };
|
|
|
|
struct NonAggr2 : public Base {
|
|
|
|
int m;
|
|
|
|
};
|
|
|
|
|
|
|
|
class NonAggr3 {
|
|
|
|
int m;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NonAggr4 {
|
2008-11-06 23:59:35 +08:00
|
|
|
int m;
|
|
|
|
virtual void f();
|
2008-11-06 00:20:31 +08:00
|
|
|
};
|
|
|
|
|
2009-12-22 10:10:53 +08:00
|
|
|
NonAggr1 na1 = { 17 }; // expected-error{{non-aggregate type 'struct NonAggr1' cannot be initialized with an initializer list}}
|
|
|
|
NonAggr2 na2 = { 17 }; // expected-error{{non-aggregate type 'struct NonAggr2' cannot be initialized with an initializer list}}
|
|
|
|
NonAggr3 na3 = { 17 }; // expected-error{{non-aggregate type 'class NonAggr3' cannot be initialized with an initializer list}}
|
|
|
|
NonAggr4 na4 = { 17 }; // expected-error{{non-aggregate type 'struct NonAggr4' cannot be initialized with an initializer list}}
|
2010-01-07 06:06:13 +08:00
|
|
|
|
|
|
|
// PR5817
|
|
|
|
typedef int type[][2];
|
|
|
|
const type foo = {0};
|
2010-01-24 03:55:29 +08:00
|
|
|
|
|
|
|
// Vector initialization.
|
|
|
|
typedef short __v4hi __attribute__ ((__vector_size__ (8)));
|
|
|
|
__v4hi v1 = { (void *)1, 2, 3 }; // expected-error {{cannot initialize a vector element of type 'short' with an rvalue of type 'void *'}}
|
2010-01-24 04:13:41 +08:00
|
|
|
|
|
|
|
// Array initialization.
|
|
|
|
int a[] = { (void *)1 }; // expected-error {{cannot initialize an array element of type 'int' with an rvalue of type 'void *'}}
|