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