Files
kotlin/compiler/testData/loadJava/compiledKotlin/fun/nonGeneric/ModifierOpen.kt
Pavel V. Talanov 72bdacb074 Add explicit return types to several test data files so that AST access is not needed
Test cases are chosen so that addition/removal of explicit type will not interfere with the original purpose of the test
2014-05-21 15:40:08 +04:00

6 lines
70 B
Kotlin
Vendored

package test
open class ModifierOpen {
open fun abs(): Int = 1
}