blob: 84e0e685f5e7735ac7db342515c4a313ef7f8e2b [file] [log] [blame]
abstract class Foo<T> {
List<T> get list;
void setList<T>(List<T> value);
}
class Bar implements Foo<int> {
List<int> list;
void setList<int>(List<int> value) {}
}