8 lines
124 B
Java
8 lines
124 B
Java
//method
|
|
// !specifyLocalVariableTypeByDefault: true
|
|
void foo() {
|
|
String s = bar();
|
|
if (s != null) {
|
|
zoo(s);
|
|
}
|
|
} |