]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0388.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0388.rs
1 static X: i32 = 1;
2 const C: i32 = 2;
3
4 const CR: &'static mut i32 = &mut C; //~ ERROR E0658
5 static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0658
6 //~| ERROR cannot borrow
7 //~| ERROR E0019
8 static CONST_REF: &'static mut i32 = &mut C; //~ ERROR E0658
9
10 fn main() {}