3427e0aebb
The insertion handling test is not correct, we need to check file imports before adding new ones
17 lines
258 B
Kotlin
Vendored
17 lines
258 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
package first
|
|
|
|
interface TestedTrait() {
|
|
}
|
|
|
|
fun firstFun() {
|
|
val a = second.SomeTest<TestedTrait>()
|
|
a.testing<caret>
|
|
}
|
|
|
|
// EXIST: testingMethod
|
|
// EXIST: testingExpectedFunction
|
|
// ABSENT: testingUnexpectedFunction
|
|
|
|
// NOTHING_ELSE
|