do not migrate from type to self

This commit is contained in:
anna
2010-12-16 19:16:28 +03:00
parent 09c64d4398
commit a167792cf4
2 changed files with 17 additions and 3 deletions
@@ -0,0 +1,11 @@
// "Change 'var' type to 'Foo" "false"
public class Test {
void foo() {
final Foo var = new Foo();
var.foo("", 6<caret>6);
}
}
class Foo {
void foo(String str, String str1){}
}