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