Files
kotlin-fork/analysis/low-level-api-fir/testdata/lazyResolve/errors/anonymousObjectInInvalidPosition.kt
T
2022-12-05 17:27:43 +01:00

8 lines
123 B
Kotlin

private val resolveMe: A = null = <expr>object : A<Int> {
override fun x() {}
}</expr>
interface A<T> {
fun x()
}