Files
kotlin-fork/compiler/testData/cfg/bugs/kt7761.kt
T
2015-05-21 19:29:49 +03:00

9 lines
167 B
Kotlin
Vendored

class UnitIncDec() {
fun inc() : Unit {}
fun dec() : Unit {}
}
fun testUnitIncDec() {
var x = UnitIncDec()
x = <warning>x<error>++</error></warning>
}