mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
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;
|
|
}
|
|
} |