blob: 1f4307c212bace0d728bd7d63d93c9ac558a782e [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
typedef Reducer<S extends core::Object> = (S, dynamic) S;
class A extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method call(dynamic a, dynamic b) dynamic {
return a;
}
}
static method foo<S extends core::Object>((self::foo::S, dynamic) self::foo::S v) void {}
static method main() void {
self::foo<core::String>(new self::A::•());
}