blob: fe680f9b33f64ec659922c74d6a428af318b90cf [file] [log] [blame]
class Color {
final int x;
Color.red() : x = 1;
Color(this.x);
}
void main() {}