]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-32501.rs
Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d' into update_cg_clif-2020...
[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 }