mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 06:01:39 +07:00
052f30a7f9
GitOrigin-RevId: f14c231ceb20e9fcb20f531a9e4856a75c9a37a7
13 lines
172 B
Java
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;
|
|
}
|