8 lines
252 B
Kotlin
Vendored
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)
|
|
} |