mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 02:04:23 +07:00
- more tests GitOrigin-RevId: d10c07df9ca188e669972a182f1616e811c6aa9e
16 lines
195 B
Java
16 lines
195 B
Java
public class RecordHighlighting {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
}
|
|
|
|
sealed interface A {
|
|
|
|
}
|
|
|
|
record B() implements A {
|
|
}
|
|
|
|
record C() implements A {
|
|
}
|
|
} |