mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 07:20:25 +07:00
95ed423db6
GitOrigin-RevId: 3a85c9310c8928cf65459ae1ff1825fabf31ec03
8 lines
141 B
Java
8 lines
141 B
Java
// "Bind constructor parameters to fields" "true-preview"
|
|
|
|
class Xerxes {
|
|
Xerxes(String s) {
|
|
}
|
|
<caret>Xerxes(int value) {
|
|
}
|
|
} |