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

8 lines
122 B
Java

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