Files
kotlin-fork/j2k/testData/fileOrElement/nullability/VariableComparedWithNull.java
T
2019-04-03 11:24:19 +03:00

8 lines
124 B
Java
Vendored

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