blob: 56adbb4a9ebc89a40d699064abdbed871ad8f1a9 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/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));
// ^
//
import self as self;
import "dart:core" as core;
typedef F = ((core::String*) →* core::int*) →* core::int*;
static method main() dynamic
;