blob: 2d7acf48fcb484c3ce165b779e35a41fad354e8e [file] [log] [blame]
// @dart = 2.9
library test;
class A<T> {
List<T> x;
void set y(List<T> value) {}
}
main() {}
test() {}