minus-squarefruitcantfly@programming.devtoLinux@lemmy.ml•'Rust makes coding fun again': Why Linux is moving away from C, according to Greg Kroah-Hartmanlinkfedilinkarrow-up1·edit-25 hours ago Rust has no Undefined Behaviour. That is simply not true. See here for a list of behavior that is considered undefined in Rust: https://doc.rust-lang.org/reference/behavior-considered-undefined.html However, most (all?) of these require the use of unsafe, which helps narrow down where the problem might be, if you trigger any of this behavior linkfedilink
That is simply not true. See here for a list of behavior that is considered undefined in Rust: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
However, most (all?) of these require the use of
unsafe, which helps narrow down where the problem might be, if you trigger any of this behavior