| OLD | NEW |
| (Empty) | |
| 1 library test; |
| 2 import self as self; |
| 3 import "dart:core" as core; |
| 4 |
| 5 static field core::int intValue = 0; |
| 6 static field core::num numValue = 0; |
| 7 static field core::double doubleValue = 0.0; |
| 8 static field dynamic a = () → dynamic => self::intValue.+(self::b); |
| 9 static field dynamic b = self::a.call(); |
| 10 static field dynamic c = () → dynamic => self::numValue.+(self::d); |
| 11 static field dynamic d = self::c.call(); |
| 12 static field dynamic e = () → dynamic => self::doubleValue.+(self::f); |
| 13 static field dynamic f = self::e.call(); |
| 14 static method main() → dynamic {} |
| OLD | NEW |