| OLD | NEW |
| (Empty) | |
| 1 library test; |
| 2 import self as self; |
| 3 import "dart:core" as core; |
| 4 |
| 5 typedef F<T extends core::Object> = (T) → void; |
| 6 typedef G<T extends core::Object, U extends core::Object> = (T) → U; |
| 7 class C<T extends core::Object> extends core::Object { |
| 8 default constructor •() → void |
| 9 : super core::Object::•() |
| 10 ; |
| 11 method f1(self::C::T x) → void {} |
| 12 method f2(core::List<self::C::T> x) → self::C::T |
| 13 return x.{core::Iterable::first}; |
| 14 } |
| 15 static method g1(self::C<core::num> c) → (core::num) → void { |
| 16 return c.{self::C::f1}; |
| 17 } |
| 18 static method g2(self::C<core::int> c, core::Object x) → void { |
| 19 (core::Object) → void f = self::g1(c) as (core::Object) → void; |
| 20 f.call(x); |
| 21 } |
| 22 static method g3(self::C<core::num> c) → (core::List<core::num>) → core::num { |
| 23 return c.{self::C::f2}; |
| 24 } |
| 25 static method test() → void { |
| 26 (core::num) → void x = self::g1(new self::C::•<core::int>()); |
| 27 x.call(1.5); |
| 28 self::g3(new self::C::•<core::int>()); |
| 29 } |
| 30 static method main() → dynamic {} |
| OLD | NEW |