blob: adf47272a7980d112ef59263c450505f9651c710 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
static field dynamic h = null;
static method foo((core::Object*) →* core::int* f) void {}
static method test() dynamic {
(core::Object*) →* Null f = (core::Object* x) Null => null;
core::String* y = f.call(42);
f = (core::Object* x) Null => "hello" as{TypeError} Null;
dynamic g = null;
g = "hello";
g.foo();
self::h = "hello";
self::h.foo();
self::foo((core::Object* x) Null => null);
self::foo((core::Object* x) <BottomType>=> throw "not implemented");
}
static method main() dynamic {}