sdk icon indicating copy to clipboard operation
sdk copied to clipboard

Record literal is considered an invalid constant

Open scheglov opened this issue 3 years ago • 0 comments

class C {
  final (num, {String name}) r;
  const C(int i, String s): r = (i + 1, name: s + "!");
}

scheglov avatar Sep 19 '22 17:09 scheglov