]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mut/mut-ref.rs
Rollup merge of #100112 - RalfJung:assert_send_and_sync, r=m-ou-se
[rust.git] / src / test / ui / mut / mut-ref.rs
1 fn main() {
2     let mut ref x = 10; //~ ERROR the order of `mut` and `ref` is incorrect
3     let ref mut y = 11;
4 }