blob: 7fcb5653c4642f7bb889fa610b376aaad33fd1f3 [file] [log] [blame]
public class TabComplete {
public void scene() {
Servant servant = new Servant();
int var = servant.method1()<caret> + 1;
}
}
class Servant {
public int method1() {
return 1;
}
}