Java: Added priorities in the completion list for arguments of getAnnotation() and getConstructor() (IDEA-167250)

This commit is contained in:
Pavel Dolgov
2017-02-14 17:11:55 +03:00
parent 9844a2ba44
commit 8754155e85
13 changed files with 127 additions and 53 deletions
@@ -0,0 +1,8 @@
import foo.bar.*;
import foo.baz.Baz;
class Main {
void foo() throws ReflectiveOperationException {
Class<Annotation> aType = Baz.class;
Test.class.getAnnotation(<caret>);
}
}