blob: 67d7482e8961b68297273cb79dd644342fb20af9 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class Color extends core::Object {
final field core::int x;
constructor red() self::Color
: self::Color::x = 1, super core::Object::•()
;
constructor •(core::int x) self::Color
: self::Color::x = x, super core::Object::•()
;
}
static method main() void {
self::Color c = new self::Color::red();
}