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

11 lines
163 B
Java
Vendored

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