blob: 33b03d62bf32e7ddb4ab7b7ef54a45fb52bbebda [file] [log] [blame]
// Errors:
//
// pkg/front_end/testcases/regress/issue_31299.dart:18:7: Error: Too many positional arguments: 0 allowed, 2 given.
// new A.foo(1, 2);
// ^
//
// pkg/front_end/testcases/regress/issue_31299.dart:15:11: Error: Too few positional arguments: 2 required, 0 given.
// new A().foo();
// ^
library;
import self as self;
import "dart:core" as core;
class A extends core::Object {
field core::int m;
constructor •() void
: self::A::m = 1, super core::Object::•()
;
constructor foo() void
: self::A::m = 2, super core::Object::•()
;
method foo(core::int a, core::int b) core::int
return a.{core::num::+}(b.{core::num::*}(this.{self::A::m}));
}
static method test() dynamic {
new self::A::•().{self::A::foo}();
new self::A::•().{self::A::foo}(1, 2);
new self::A::foo();
throw new core::NoSuchMethodError::withInvocation(null, new core::_InvocationMirror::_withType(#foo, 32, const <core::Type>[], core::List::unmodifiable<dynamic>(<dynamic>[1, 2]), core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})));
}
static method main() dynamic {}