6052e24626
^KT-59791 In Progress
23 lines
354 B
Kotlin
Vendored
23 lines
354 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// WITH_STDLIB
|
|
// FIR_DUMP
|
|
// SKIP_TXT
|
|
|
|
fun Any?.test() {}
|
|
|
|
class Bar {
|
|
fun test() {}
|
|
}
|
|
|
|
fun main() {
|
|
|
|
buildList {
|
|
add(Bar())
|
|
<!BUILDER_INFERENCE_STUB_RECEIVER!>this.get(0)<!>.test() // resolved to Any?.test
|
|
}
|
|
buildList<Bar> {
|
|
add(Bar())
|
|
this.get(0).test() // resolved to Bar.test
|
|
}
|
|
}
|