bbe9be5150
#KT-4668 Fixed
12 lines
249 B
Kotlin
12 lines
249 B
Kotlin
package some
|
|
|
|
open class Test
|
|
object First: Test() // There's no info for Test in binding context
|
|
|
|
class Second {
|
|
fun <caret>foo(statement: First) { // Reference to First, to make lazy resolve put it into binding context
|
|
}
|
|
}
|
|
|
|
// For KT-4668
|