blob: 02c589773627de373f5ba9117b26de835757d47b [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
typedef F<T extends core::Object> = (T) void;
class C<T extends core::Object> extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
operator [](core::int i) (self::C::T) void
return null;
}
static method test(self::C<core::num> c) (core::num) void {
return c.[](0);
}
static method main() dynamic {}