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