16 lines
240 B
Kotlin
Vendored
16 lines
240 B
Kotlin
Vendored
package first
|
|
|
|
interface TestedTrait() {
|
|
}
|
|
|
|
fun firstFun() {
|
|
val a = second.SomeTest<TestedTrait>()
|
|
a.testing<caret>
|
|
}
|
|
|
|
// EXIST: testingMethod
|
|
// EXIST: testingExpectedFunction
|
|
// ABSENT: testingUnexpectedFunction
|
|
|
|
// NOTHING_ELSE
|