blob: ff6693ad004aa315d843eed4c0f2606310d00378 [file] [log] [blame]
import java.io.InputStream;
class Test {
InputStream inputStream = new MyIn<caret>
private class MyInputStream extends InputStream {
MyInputStream(String nmame){}
public int read() throws IOException {
return 0;
}
}
}