12 lines
213 B
Kotlin
Vendored
12 lines
213 B
Kotlin
Vendored
// "Create expected class in common module testModule_Common" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
interface Some
|
|
|
|
class A {
|
|
actual val a: Some
|
|
|
|
actual <caret>constructor(a: Some, b: Int) {
|
|
this.a = a
|
|
}
|
|
} |