Files
kotlin/idea/testData/multiModuleLineMarker/fromCommonToJvmHeader/jvm/jvm.kt
Mikhail Glukhikh 3ba6b70f73 Show expect / actual gutter even for incomplete compatibility
So #KT-18445 Fixed
So #KT-21115 Fixed
2018-02-06 09:50:00 +03:00

14 lines
168 B
Kotlin
Vendored

// !CHECK_HIGHLIGHTING
actual class Header {
actual fun foo() = 42
}
actual class Incomplete
actual fun foo(arg: Int) = arg.toString()
actual val flag = true