blob: f965875f6fd867853f6c4e2f126456ea2c8b74b0 [file] [log] [blame]
import org.jetbrains.annotations.*;
class Foo {
public void x() throws IOException {
@Nullable String foo = "";
while (foo.length() == 0) {
foo = y();
if (foo == null) throw new IOException("foo");
}
}
public String y() {
return "";
}
}