blob: a23d97f4cd265298e126752ef81054e95ed80fff [file] [log] [blame]
class Foo {
List list = [1, 2, 3];
set first(x) => list[0] = x;
operator []=(x, y) => list[x] = y;
void clear() => list.clear();
}
main() {}