Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/native/abstract.kt
T
2014-12-16 16:23:30 +03:00

11 lines
242 B
Kotlin
Vendored

import kotlin.jvm.*
abstract class C {
<!NATIVE_DECLARATION_CANNOT_BE_ABSTRACT!>abstract<!> native fun foo()
}
fun test() {
abstract class Local {
<!NATIVE_DECLARATION_CANNOT_BE_ABSTRACT!>abstract<!> native fun foo()
}
}