mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
12 lines
120 B
Plaintext
12 lines
120 B
Plaintext
class Bar0 {
|
|
void foo() { }
|
|
}
|
|
class Bar {
|
|
void f() {
|
|
I r = Bar0::foo;
|
|
}
|
|
|
|
}
|
|
interface I {
|
|
void m(Bar0 b);
|
|
} |