smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / afterNew / before10.java
blobff6693ad004aa315d843eed4c0f2606310d00378
1 import java.io.InputStream;
2 class Test {
3 InputStream inputStream = new MyIn<caret>
5 private class MyInputStream extends InputStream {
6 MyInputStream(String nmame){}
7 public int read() throws IOException {
8 return 0;