a test for IDEA-174819 Following annotation is removed on autocomplete

This commit is contained in:
peter
2017-08-16 19:57:19 +02:00
parent 7386429f3f
commit d562896618
3 changed files with 24 additions and 0 deletions
@@ -0,0 +1,11 @@
class TestMe {
public interface Exo {}
TestMe.<caret>
/* Hello World */
@Override
public String toString() {
return "xyz";
}
}
@@ -0,0 +1,11 @@
class TestMe {
public interface Exo {}
TestMe.Exo<caret>
/* Hello World */
@Override
public String toString() {
return "xyz";
}
}