blob: e99b04357078ff3be6d17e7dc3a03d380f7c20de [file] [log] [blame]
String method(A a) {}
class B {
const B(this.value);
final int value;
static const B a = const B(const int.fromEnvironment('a'));
static const B b = const B(const int.fromEnvironment('b'));
}
enum A {
a(B.a),
b(B.b);
final B value;
const A(this.value);
}