15 lines
232 B
Kotlin
15 lines
232 B
Kotlin
package first
|
|
|
|
trait TestedTrait() {
|
|
}
|
|
|
|
fun firstFun() {
|
|
val a = second.SomeTest<TestedTrait>()
|
|
a.testing<caret>
|
|
}
|
|
|
|
// EXIST: testingMethod
|
|
// EXIST: testingExpectedFunction
|
|
// ABSENT: testingUnexpectedFunction
|
|
|
|
// NUMBER: 2 |