]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-32501.rs
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[rust.git] / src / test / ui / parser / issue-32501.rs
1 fn main() {
2     let a = 0;
3     let _b = 0;
4     let _ = 0;
5     let mut b = 0;
6     let mut _b = 0;
7     let mut _ = 0;
8     //~^ ERROR `mut` must be followed by a named binding
9 }