added a test for completion

This commit is contained in:
Dmitry Batkovich
2017-04-03 15:53:38 +03:00
parent 7bb56d7bac
commit 6d4e63d001
11 changed files with 306 additions and 0 deletions
@@ -0,0 +1,21 @@
class Bar {
void m(Foo foo) {
foo.asd();
foo.asd();
foo.asd();
System.out.println(foo.qwe);
System.out.println(foo.qwe);
System.out.println(foo.qwe);
System.out.println(foo.qwe);
System.out.println(foo.qwe);
foo.zxc();
foo.zxc();
foo.zxc();
<caret>
}
}