blob: 13f18880308e9b3d1993f31676c72c579652af18 [file] [log] [blame]
import 'dart:collection';
class A with ListMixin<int> {
int count = 0;
int get length => 2;
int operator [](int index) {}
void operator []=(int index, int value) {}
void set length(int value) {}
}
expectEquals(x, y) {}
main() {}