| 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 { | |
| default 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 {} |