mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
Add tests for the switch postfix completion GitOrigin-RevId: b1221d428e78221c3a2c3e128d24eefa4bd2bc0e
9 lines
140 B
Java
9 lines
140 B
Java
|
|
class Main {
|
|
int h(Sealed o) {
|
|
o.swit<caret>
|
|
}
|
|
|
|
public static sealed interface Sealed {}
|
|
public static final class Variant {}
|
|
} |