blob: 9b5ec3919db9d5ca254f459d7dc2f52c005f8875 [file] [log] [blame]
// "Replace with 'list != null ?:'" "true"
import org.jetbrains.annotations.NotNull;
class A{
void test(@NotNull List l) {
final List list = null;
test(li<caret>st);
}
}