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

12 lines
157 B
Java

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