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-02-04 17:53:13 +08:00
|
|
|
enum E : Z(); // expected-error{{integral constant expression must have integral or unscoped enumeration type, not 'Z'}}
|
2010-12-02 01:42:47 +08:00
|
|
|
};
|
2014-07-16 13:16:52 +08:00
|
|
|
|
|
|
|
namespace pr18587 {
|
|
|
|
struct A {
|
|
|
|
enum class B {
|
|
|
|
C
|
|
|
|
};
|
|
|
|
};
|
|
|
|
const int C = 4;
|
|
|
|
struct D {
|
|
|
|
A::B : C;
|
|
|
|
};
|
|
|
|
}
|