sdk icon indicating copy to clipboard operation
sdk copied to clipboard

No resolution for record field invocation

Open scheglov opened this issue 3 years ago • 0 comments

class C {
  int? i;

  C() { i = 0; }

  C.foo(int i) { this.i = 1; }
}

main() {
  var r = (C.new, c1: C.foo);
  r.$0().i;
  r.c1(42).i;
}

scheglov avatar Sep 19 '22 18:09 scheglov