Files
kotlin-fork/idea/testData/codeInsight/lineMarker/overrideImplement/BadCodeNoExceptions.kt
T
2015-04-08 14:38:04 +03:00

10 lines
167 B
Kotlin

trait Hi {
fun foo(): Int
}
// Closing brace is intentionally missed
val id = array("kotlin.FlexibleType"
private class Some(): Hi {
override fun foo() = 1
}