blob: fc94753e7e7efae9db1e4898b137b487d21c2577 [file] [log] [blame]
library;
//
// Problems in library:
//
// pkg/front_end/testcases/general/function_call2.dart:23:22: Error: Cannot invoke an instance of '_Closure1' because it declares 'call' to be something other than a method.
// - '_Closure1' is from 'pkg/front_end/testcases/general/function_call2.dart'.
// Try changing 'call' to a method or explicitly invoke 'call'.
// var field1 = closure1();
// ^
//
// pkg/front_end/testcases/general/function_call2.dart:24:22: Error: Cannot invoke an instance of '_Closure2' because it declares 'call' to be something other than a method.
// - '_Closure2' is from 'pkg/front_end/testcases/general/function_call2.dart'.
// Try changing 'call' to a method or explicitly invoke 'call'.
// var field2 = closure2();
// ^
//
import self as self;
import "dart:core" as core;
class _Closure1 extends core::Object {
synthetic constructor •() self::_Closure1
;
get call() () void
;
}
class _Closure2 extends core::Object {
final field () void call;
constructor •(() void call) self::_Closure2
;
}
late static field self::_Closure1 closure1;
late static field self::_Closure2 closure2;
static field invalid-type field1;
static field invalid-type field2;
static method test(self::_Closure1 foo, self::_Closure2 bar) dynamic
;
static method main() dynamic
;