Files
kotlin-fork/j2k/tests/testData/ast/nullability/VariableComparedWithNull.java
T
2014-06-10 14:26:54 +04:00

8 lines
124 B
Java

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