blob: aee80bb0a4b1d02fd83567e270a6c8639ef4b530 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/regress/issue_29979.dart:6:4: Error: A function expression can't have a name.
// (f() {})();
// ^
//
import self as self;
static method main() dynamic {
(let final () →* Null f = () Null {} in f).call();
}