blob: 4f3253359f76fc2aef10608f444557a202d5fa4c [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 {
return null;
};
core::String* y = f(42){(core::Object*) →* Null};
f = (core::Object* x) Null => "hello" as{TypeError} Null;
self::foo((core::Object* x) Null {
return null;
});
self::foo((core::Object* x) Null {
throw "not implemented";
});
}
static method main() dynamic {}