Files
kotlin/idea/testData/multiModuleQuickFix/interface/header/header.kt.after
2017-10-05 15:28:33 +03:00

15 lines
246 B
Plaintext
Vendored

// "Create actual interface for platform JVM" "true"
expect interface Interface {
fun foo(param: String): Int
fun String.bar(y: Double): Boolean
val isGood: Boolean
var status: Int
class Nested {
fun bar()
}
}