blob: 244b4eba3c02edc70c0e7c48856db2068a909014 [file] [log] [blame]
// Formatted problems:
//
// pkg/front_end/testcases/function_type_recovery.dart:8:31: Error: Inline function types cannot be used for parameters in a generic function type.
// Try changing the inline function type (as in 'int f()') to a prefixed function type using the `Function` keyword (as in 'int Function() f').
// typedef F = int Function(int f(String x));
// ^
library;
import self as self;
import "dart:core" as core;
typedef F = ((core::String) core::int) core::int;
static method main() dynamic
;