mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
class Foreign {
|
|
void foo(MoveMethodTest moveMethodTest, MoveMethodTest.Inner inner) {
|
|
moveMethodTest.bar (inner);
|
|
}
|
|
}
|
|
|
|
class MoveMethodTest {
|
|
void bar(Inner inner) {}
|
|
|
|
class Inner {
|
|
}
|
|
}
|