blob: 0ab42b1efe3c619440d0fad8f102e93b077f3b64 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/recursive_named_function_expression.dart:6:16: Error: A function expression can't have a name.
// var f = void foo() {
// ^^^
//
import self as self;
static method test() void {
invalid-type f = block {
function foo() void {
foo(){() void};
}
} =>invalid-expression "pkg/front_end/testcases/general/recursive_named_function_expression.dart:6:11: Error: A function expression can't have a name.
var f = void foo() {
^";
}