14 lines
310 B
Kotlin
Vendored
14 lines
310 B
Kotlin
Vendored
// "Create expected class in common module testModule_Common" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
actual class My<caret> {
|
|
class Middle() {
|
|
class Inner actual constructor() {
|
|
enum class MyEnum {
|
|
FOO, TEST;
|
|
|
|
actual fun check() = "42"
|
|
}
|
|
}
|
|
}
|
|
} |