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