rustc/tests/ui/parser/removed-syntax/removed-syntax-uniq-mut-expr.rs
2024-06-19 10:24:51 +02:00

4 lines
93 B
Rust

fn main() {
let a_box = box mut 42; //~ ERROR expected expression, found keyword `mut`
}