blob: 6053292699006078042f647aa0878a75d98356f1 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class A extends core::Object {
final field core::int x;
const constructor •(core::int x) void
: self::A::x = x, super core::Object::•()
;
}
static method main() dynamic {
core::int foo = 42;
new self::A::•(5);
new self::A::•(5.+(5));
new self::A::•(foo);
new self::A::•(5.+(foo));
}