Johnni Winther | 80dacdf | 2020-02-06 12:27:37 +0000 | [diff] [blame] | 1 | library /*isNonNullableByDefault*/; |
Dmitry Stefantsov | 2af5aec | 2019-12-18 09:01:30 +0000 | [diff] [blame] | 2 | import self as self; |
3 | import "dart:core" as core; | ||||
4 | |||||
Dmitry Stefantsov | d54e2bb | 2020-11-06 12:43:52 +0000 | [diff] [blame] | 5 | static method foo(Null x) → dynamic { |
Dmitry Stefantsov | 2af5aec | 2019-12-18 09:01:30 +0000 | [diff] [blame] | 6 | self::bar(x!); |
7 | } | ||||
8 | static method bar(core::int y) → dynamic {} | ||||
9 | static method main() → dynamic {} |