blob: 44f5109db5b2509b168f18966bb5fdb8e6300766 [file]
class C1([@m int x = m]) {
static const int m = 42;
}
class C2(int x) {
static const String int = 'not a type';
}
enum E1([@a int x = m]) {
a(0);
static const int m = 42;
}
enum E2(int x) {
a(0);
static const String int = 'not a type';
}
extension type ET1([@m int x = m]) {
static const int m = 42;
}
extension type ET2(int x) {
static const String int = 'not a type';
}