convert to instance method: warn about new visibility

This commit is contained in:
anna
2012-11-29 11:53:01 +01:00
parent a22fe193ab
commit 135a4dec53
3 changed files with 29 additions and 45 deletions
@@ -0,0 +1,11 @@
class Test {
{
foo(new Bar());
}
private static void <caret>foo(Bar b){}
}
class Bar {
}