| library; |
| // |
| // Problems in library: |
| // |
| // pkg/front_end/testcases/general/issue38253.dart:9:1: Error: Expected ';' after this. |
| // } |
| // ^ |
| // |
| // pkg/front_end/testcases/general/issue38253.dart:6:3: Error: 'g' isn't a type. |
| // g f(){ |
| // ^ |
| // |
| // pkg/front_end/testcases/general/issue38253.dart:7:5: Warning: Must explicitly return a value from a non-void function. |
| // return; |
| // ^ |
| // |
| import self as self; |
| |
| static field () →* Null a = () → Null { |
| function f() → invalid-type { |
| return null; |
| } |
| }; |
| static method main() → dynamic {} |