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

8 lines
132 B
Java
Vendored

//method
// !SPECIFY_LOCAL_VARIABLE_TYPE_BY_DEFAULT: true
void foo(boolean b) {
String s = "abc";
if (b) {
s = null;
}
}