mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 12:48:12 +07:00
GitOrigin-RevId: 9b6541f85a1ea73a3debe088ff32899db79aade4
10 lines
161 B
Java
10 lines
161 B
Java
interface IMessage {
|
|
class <caret>Topic {
|
|
}
|
|
}
|
|
|
|
abstract class Message implements IMessage {
|
|
public static void main(String[] args) {
|
|
new Topic();
|
|
}
|
|
} |