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