mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
205 B
Java
12 lines
205 B
Java
// "Assign parameter to field 'myStr'" "true-preview"
|
|
|
|
|
|
class Foo1 {
|
|
final String myStr;
|
|
Foo1(String str) {
|
|
myStr = str;
|
|
if(Math.random() > 0.5) {
|
|
} else {
|
|
}
|
|
}
|
|
} |