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-22 10:22:31 +08:00
|
|
|
struct Z {};
|
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);
|
2012-01-15 11:51:30 +08:00
|
|
|
enum E : Z(); // expected-error{{not an integral constant}}
|
2010-12-02 01:42:47 +08:00
|
|
|
};
|