Files
openide/java/java-tests/testData/codeInsight/completion/normal/MethodCallBeforeAnnotation2.java
Roman Shevchenko 200e67ca65 IDEA-106141 (trailing annotations excluded from an incomplete reference expression)
I.e. in "X. \n @A public T m()", @A is no longer a part of "X.".
2015-07-03 16:00:02 +03:00

8 lines
127 B
Java

class MyClass {
Object o = new Object();
String s = o.<caret>
@Annotation
String myAnnotatedMethod() { return ""; }
}