b1f1360081
#KT-7761 Fixed
9 lines
167 B
Kotlin
Vendored
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>
|
|
} |