10 lines
155 B
Kotlin
Vendored
10 lines
155 B
Kotlin
Vendored
package test
|
|
|
|
interface TraitWithFunImplement {
|
|
fun foo(): Int {
|
|
return 12;
|
|
}
|
|
}
|
|
|
|
// SEARCH_TEXT: Trait
|
|
// REF: (test).TraitWithFunImplement |