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