dd1ac5bb6b
Related to KT-19811
11 lines
304 B
Kotlin
Vendored
11 lines
304 B
Kotlin
Vendored
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtNamedFunction
|
|
// OPTIONS: usages, skipImports
|
|
package server
|
|
|
|
interface TraitWithImpl {
|
|
internal fun <caret>foo() = 1
|
|
}
|
|
|
|
public class TraitWithDelegatedWithImpl(f: TraitWithImpl): TraitWithImpl by f
|
|
|
|
fun test(twdwi: TraitWithDelegatedWithImpl) = twdwi.foo() |