Files
kotlin-fork/idea/testData/codeInsight/lineMarker/BadCodeNoExceptions.kt
T
2014-10-14 15:38:27 +04: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
}