Files
kotlin-fork/analysis/analysis-api/testData/symbols/singleSymbolByPsi/errors/anonymousObjectInInvalidPosition.kt
T
2022-12-05 17:27:43 +01:00

9 lines
166 B
Kotlin
Vendored

// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE
private val _commonSettingsLazy: A = null = ob<caret>ject : A<Int> {
override fun x() {}
}
interface A<T> {
fun x()
}