Files
kotlin-fork/idea/testData/multiModuleQuickFix/createActual/abstract/header/header.kt
T
2019-08-27 17:26:08 +07:00

11 lines
240 B
Kotlin
Vendored

// "Create actual class for module testModule_JS (JS)" "true"
expect abstract class <caret>Abstract {
fun foo(param: String): Int
abstract fun String.bar(y: Double): Boolean
val isGood: Boolean
abstract var status: Int
}