mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 17:38:08 +07:00
GitOrigin-RevId: 218b864c95d25b6ff47e9360e0eeef47308f0ae8
12 lines
194 B
Java
12 lines
194 B
Java
// "Bind method parameters to fields" "true-preview"
|
|
|
|
class Bar {
|
|
|
|
private Class<?> myA;
|
|
private int myB;
|
|
|
|
<T> void get(Class<T> a, int b) {
|
|
myA = a;
|
|
myB = b;
|
|
}
|
|
} |