mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
12 lines
208 B
Java
12 lines
208 B
Java
// "Bind method parameters to fields" "true-preview"
|
|
|
|
class Bar<T extends Number> {
|
|
|
|
private Class<T> myA;
|
|
private int myB;
|
|
|
|
void get(Class<T> a, int b) {
|
|
myA = a;
|
|
myB = b;
|
|
}
|
|
} |