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