do not introduce field before this/super call (IDEA-56011)

This commit is contained in:
anna
2010-11-22 22:18:55 +03:00
parent 5e69316b8c
commit 9d03d64288
4 changed files with 41 additions and 12 deletions

View File

@@ -0,0 +1,6 @@
class Test {
Test(String s, String s1) {}
Test(String s) {
this(<selection>s</selection>, s);
}
}