Similar to #365
@a.B(In|)
class C {
static class Inner {}
}
package a;
import java.lang.annotation.*;
@Target(ElementType.TYPE)
public @interface B {
Class<?> value();
}
Completion at '|' completes as Inner when C.Inner is required due to the scope of the type annotation.
Similar to #365
Completion at '|' completes as
InnerwhenC.Inneris required due to the scope of the type annotation.