Skip to content

Code assist does not add necessary qualifier for use of inner type in type annotation #478

@eric-milles

Description

@eric-milles

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.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions