mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 07:20:25 +07:00
95ed423db6
GitOrigin-RevId: 3a85c9310c8928cf65459ae1ff1825fabf31ec03
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;
|
|
}
|
|
} |