mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
11 lines
192 B
Java
11 lines
192 B
Java
// "Bind constructor parameters to fields" "true-preview"
|
|
|
|
class Xerxes {
|
|
private int myValue;
|
|
|
|
Xerxes(String s) {
|
|
}
|
|
<caret>Xerxes(int value) {
|
|
myValue = value;
|
|
}
|
|
} |