2010-08-17 01:27:08 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
|
|
|
|
struct S {
|
2012-12-08 10:53:02 +08:00
|
|
|
S(); // expected-note {{because type 'S' has a user-provided default constructor}}
|
2010-08-17 01:27:08 +08:00
|
|
|
};
|
|
|
|
|
2011-10-20 06:43:29 +08:00
|
|
|
struct { // expected-error {{anonymous structs and classes must be class members}}
|
|
|
|
};
|
|
|
|
|
2010-08-17 01:27:08 +08:00
|
|
|
struct E {
|
|
|
|
struct {
|
2012-12-08 10:53:02 +08:00
|
|
|
S x; // expected-error {{anonymous struct member 'x' has a non-trivial constructor}}
|
2010-08-17 01:27:08 +08:00
|
|
|
};
|
2011-10-20 06:43:29 +08:00
|
|
|
static struct {
|
|
|
|
};
|
2010-08-17 01:27:08 +08:00
|
|
|
};
|