blob: cd556b8e20c5c9551a752ea6ccdfeb8474fc19e9 [file] [log] [blame]
// "Replace with 'integer != null ?:'" "true"
import java.lang.Integer;
class A{
void test(){
Integer integer = null;
int i = integer != null ? integer.toString().length() : <caret><selection>0</selection>;
}
}