Files
kotlin-fork/idea/testData/intentions/convertSecondaryConstructorToPrimary/withDelegation.kt
T
2016-09-30 16:39:24 +03:00

7 lines
107 B
Kotlin
Vendored

// IS_APPLICABLE: false
class WithDelegation {
constructor()
constructor<caret>(x: Int): this()
}