Comment #0 by qs.il.paperinik — 2024-07-03T17:20:10Z
While technically, `x++` means `x` is copied and the copy isn’t used, for non-copyable types, that means `x++` can’t compile. Maybe allow postfix increment for non-copyable types if the result isn’t used and make it mean `++x` (which is what it means for copyable types).
Comment #1 by robert.schadek — 2024-12-13T19:36:13Z