mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 12:50:56 +07:00
Fixes IDEA-334398 Code completion of nested types suggests confusing levels of nesting GitOrigin-RevId: 206fc2b9f4a6501720b7bc95e79d981b20450823
13 lines
235 B
Java
13 lines
235 B
Java
sealed interface AddUserError {
|
|
|
|
final class NameIsEmpty implements AddUserError {}
|
|
|
|
final class NameIsTooLong implements AddUserError {}
|
|
}
|
|
|
|
class Test {
|
|
|
|
public static AddUserError TryAddUser() {
|
|
return new AUE.<caret>
|
|
}
|
|
} |