class UnitIncDec() { fun inc() : Unit {} fun dec() : Unit {} } fun testUnitIncDec() { var x = UnitIncDec() x = x++ }