mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
176 B
Java
13 lines
176 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;
|
|
}
|