Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/builderInference/errorOnStubReceiver.fir.kt
T
2022-08-30 10:19:24 +00:00

22 lines
299 B
Kotlin
Vendored

// WITH_STDLIB
// FIR_DUMP
// SKIP_TXT
fun Any?.test() {}
class Bar {
fun test() {}
}
fun main() {
buildList {
add(Bar())
this.get(0).test() // resolved to Any?.test
}
buildList<Bar> {
add(Bar())
this.get(0).test() // resolved to Bar.test
}
}