Files
kotlin-fork/compiler/testData/diagnostics/tests/kt34857.fir.kt
T
2020-01-27 13:24:49 +01:00

9 lines
105 B
Kotlin
Vendored

// !LANGUAGE: +NewInference
val Int.plusAssign: (Int) -> Unit
get() = {}
fun main() {
1 += 2
}