blob: 63bcf5a5ed8809904787b8ae9a96e6acb439372a [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/illegal_named_function_expression_scope.dart:7:14: Error: A function expression can't have a name.
// print(void f() {});
// ^
//
import self as self;
import "dart:core" as core;
static method main() dynamic {
function f() void {}
core::print(let final () →* Null f = () Null {} in f);
}