mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +07:00
13 lines
163 B
Java
13 lines
163 B
Java
// "Create abstract method 'foo'" "true"
|
|
class Usage {
|
|
void usage(Target t) {
|
|
t.<caret>foo();
|
|
}
|
|
}
|
|
|
|
enum Target {
|
|
;
|
|
|
|
abstract void bar();
|
|
}
|