684d0b8690
Do not record lookups to kotlin builtins, since it is considered useless. Related to #KT-66417
15 lines
535 B
Kotlin
Vendored
15 lines
535 B
Kotlin
Vendored
package foo
|
|
/*p:bar(C)*/import bar.C
|
|
/*p:bar(SAMInterface)*/import bar.SAMInterface
|
|
|
|
/*p:foo*/fun foo(c: /*p:bar p:foo*/C) {
|
|
/*p:bar(foo) p:bar.C(foo) p:foo(foo)*/c.foo()
|
|
/*p:bar(SAMInterface) p:bar.C(foo) p:bar/SAMInterface(<SAM-CONSTRUCTOR>)*/c.foo /*p:kotlin(Function1)*/{ }
|
|
|
|
/*p:bar p:bar(bar) p:foo p:foo(bar)*/C.bar()
|
|
/*p:bar p:bar(SAMInterface) p:bar/SAMInterface(<SAM-CONSTRUCTOR>) p:foo*/C.bar /*p:kotlin(Function1)*/{}
|
|
|
|
/*p:bar p:foo*/SAMInterface()
|
|
/*p:bar*/SAMInterface /*p:kotlin(Function1)*/{}
|
|
}
|