Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/TraitImpl.kt
2015-05-12 19:43:17 +02:00

9 lines
103 B
Kotlin
Vendored

package test
interface Trait {
fun simple() {
}
fun generic(list: List<String>) {
}
}