blob: 8f696fe10c9df9bfeb74b770605db924af509add [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class A extends core::Object {
field core::int m;
constructor •() self::A
: self::A::m = 1, super core::Object::•()
;
constructor foo() self::A
: self::A::m = 2, super core::Object::•()
;
method foo(core::int a, core::int b) core::int
return a.+(b.*(this.{self::A::m}));
}
static method test() dynamic {
new self::A::•().foo();
new 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 {}