1a01dd4dd4
^KT-62437
9 lines
167 B
Kotlin
Vendored
9 lines
167 B
Kotlin
Vendored
open class IJProject(val init: () -> Unit = {})
|
|
|
|
@Suppress("UNUSED_VARIABLE")
|
|
class KotlinIDE : IJProject(init = {
|
|
fun foo() {
|
|
val f = anySymbols
|
|
}
|
|
})
|