Files
kotlin-fork/j2k/testData/fileOrElement/nullability/VariableComparedWithNull.java
T
2020-03-19 16:45:10 +01:00

8 lines
129 B
Java
Vendored

//method
// !SPECIFY_LOCAL_VARIABLE_TYPE_BY_DEFAULT: true
void foo() {
String s = bar();
if (s != null) {
zoo(s);
}
}