Files
kotlin-fork/idea/testData/multiModuleQuickFix/expectClassWithSecondaryConstructor2/jvm/My.kt
T
Dmitry Gridin b575ed390a Add a dialog to select members for export in expect class
#KT-31476 Fixed
#KT-31446 Fixed
#KT-31033 Fixed
2019-05-24 15:55:01 +07:00

8 lines
252 B
Kotlin
Vendored

// "Create expected class in common module testModule_Common" "true"
// DISABLE-ERRORS
actual class My<caret> actual constructor(val a: Int) {
fun foo(param: String) = param.length
actual val text: String = "test"
constructor(): this(42)
}