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