Files
kotlin-fork/idea/testData/multiModuleQuickFix/createActualExplicitApi/class/jvm/My.kt.after
T
2021-05-17 12:40:49 +00:00

24 lines
550 B
Plaintext
Vendored

// My: to be implemented
public actual class My {
public actual fun foo(param: String): Int {
TODO("Not yet implemented")
}
public actual fun String.bar(y: Double): Boolean {
TODO("Not yet implemented")
}
public actual fun baz() {
}
public actual constructor(flag: Boolean) {
TODO("Not yet implemented")
}
public actual val isGood: Boolean
get() = TODO("Not yet implemented")
public actual var status: Int
get() = TODO("Not yet implemented")
set(value) {}
}