Files
2019-08-27 17:26:09 +07:00

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
}
}