KT-14890 Fix the problem with RemoveEmptyClassBodyIntention for nested class followed by a secondary constructor

#KT-14890 Fixed
This commit is contained in:
shiraji
2016-11-28 06:48:31 +09:00
committed by Mikhail Glukhikh
parent b7f27b86fe
commit ba92dcb737
8 changed files with 90 additions and 0 deletions
@@ -0,0 +1,10 @@
class A(val x: String) {
class C {<caret>}
fun foo() {
}
constructor(x: String, y: Int) : this(x) {
}
}