mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
also fixes internationalization and the incorrect comma in the name for "Create missing switch branches" quick-fix GitOrigin-RevId: 16285e054447d8d15318df8889499bbbf91243a7
10 lines
232 B
Java
10 lines
232 B
Java
// "Create missing branch 'Test.Cl1'" "true-preview"
|
|
class Test {
|
|
interface II1{}
|
|
sealed interface II2{}
|
|
non-sealed class Cl1 implements II2{}
|
|
public <T extends II1 & II2> void test(T c) {
|
|
switch (c<caret>) {
|
|
}
|
|
}
|
|
} |