2011-10-14 06:29:44 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -pedantic -std=c++11 -verify -triple x86_64-apple-darwin %s
|
2010-12-02 01:42:47 +08:00
|
|
|
|
|
|
|
enum E {};
|
|
|
|
|
2011-12-13 14:39:58 +08:00
|
|
|
struct Z {}; // expected-note {{here}}
|
2010-12-02 01:42:47 +08:00
|
|
|
typedef int Integer;
|
|
|
|
|
|
|
|
struct X {
|
|
|
|
enum E : 1;
|
|
|
|
enum E : Z; // expected-error{{invalid underlying type}}
|
|
|
|
enum E2 : int;
|
|
|
|
enum E3 : Integer;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Y {
|
|
|
|
enum E : int(2);
|
2011-12-13 14:39:58 +08:00
|
|
|
enum E : Z(); // expected-error{{not an integer constant}} expected-note {{non-constexpr constructor 'Z'}}
|
2010-12-02 01:42:47 +08:00
|
|
|
};
|