mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
11 lines
191 B
Java
11 lines
191 B
Java
// "Assign parameter to field 'myStr'" "true-preview"
|
|
|
|
|
|
class Foo1 {
|
|
final String myStr;
|
|
Foo1(String s<caret>tr) {
|
|
if(Math.random() > 0.5) {
|
|
} else {
|
|
}
|
|
}
|
|
} |