Files
openide/java/java-tests/testData/codeInsight/completion/normal/NestedClassCompletion2.java
Tagir Valeev 093ca478fd [java-completion] Deduplicate chained items with different class qualifier
They are basically the same
Improvement for IDEA-334398

GitOrigin-RevId: 1d29fed1c229ed3d41c89902dfe578ab1610f989
2023-10-20 19:12:59 +00:00

17 lines
377 B
Java

sealed interface AddUserError {
non-sealed class NameIsEmpty implements AddUserError {
final static class T4 extends NameIsTooLong.T3 {}
}
non-sealed class NameIsTooLong implements AddUserError {
static class T extends NameIsEmpty{}
static class T3 extends T{}
}
}
class Test {
public static AddUserError TryAddUser() {
return new AUE.<caret>
}
}