mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
236 B
Plaintext
17 lines
236 B
Plaintext
class Foreign {
|
|
void foo(Test1.Inner i, Test1 test1) {
|
|
test1.new Inner();
|
|
}
|
|
|
|
class Inner {}
|
|
}
|
|
|
|
|
|
public abstract class Test1 {
|
|
|
|
class Inner {}
|
|
|
|
void bar () {
|
|
new Foreign().foo(new Inner(), this);
|
|
}
|
|
} |