allow to introduce constant from this/super expressions (IDEA-63085)

This commit is contained in:
anna
2010-12-22 19:41:58 +03:00
parent 3135602f9c
commit 852773cbe4
4 changed files with 27 additions and 1 deletions
@@ -0,0 +1,8 @@
class Test {
public Test() {
this(<selection>10</selection>);
}
public Test(final int i) {
}
}