blob: bb2aa3bd29a71a0085ef050770e880300c9b7eef [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/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 () core::Null f = () core::Null {} in f);
}