disable create local from usage in this/super calls (IDEA-184182)

This commit is contained in:
Anna.Kozlova
2017-12-22 15:11:13 +01:00
parent 2999cda37b
commit bee978ba1e
2 changed files with 24 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
// "Create local variable 'a'" "false"
class C {
public C(int i) {
}
public C() {
this(<caret>a);
}
}