mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
249 B
Kotlin
Vendored
12 lines
249 B
Kotlin
Vendored
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
|