This commit is contained in:
Dmitry Jemerov
2009-09-10 20:03:37 +04:00
parent 735897ab61
commit d1b91105a2
31 changed files with 5 additions and 0 deletions
@@ -0,0 +1,12 @@
class Foreign {
void foo(MoveMethodTest moveMethodTest, MoveMethodTest.Inner inner) {
moveMethodTest.bar (inner);
}
}
class MoveMethodTest {
void bar(Inner inner) {}
class Inner {
}
}