introduce parameter object: downgrade accessibilty for inner classes (IDEADEV-35295)

This commit is contained in:
anna
2010-01-14 14:28:48 +03:00
parent eced11faaf
commit b326598366
9 changed files with 63 additions and 7 deletions
@@ -0,0 +1,7 @@
class Test {
void foo(String s) {
bar(s);
}
void bar(String s){}
}
@@ -0,0 +1,5 @@
class Usage {
void barr(Test t) {
t.foo("");
}
}