Files
2022-10-27 14:39:19 +00:00

13 lines
172 B
Java

// "Create field 'foo'" "true-preview"
class Usage {
void usage(Generic<String> g, List<String> p) {
g.foo = p;
}
}
class Generic<T> {
public List<T> foo;
}