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