blob: 2a08350c766fea8b2b03065f3d8507a7cb3ddf6b [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class C extends core::Object {
static const field core::int constField = 87;
const constructor •(dynamic x) self::C
: super core::Object::•()
;
}
static const field core::int constTopLevelField = 42;
static method main() dynamic {
new self::C::•(self::C::constField);
new self::C::•(self::constTopLevelField);
}