summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0017.rs
blob: 64be41170d0c897156211e5d7fc5c1b8b4f9959c (plain)
1
2
3
4
5
6
7
8
9
10
11
static X: i32 = 1;
const C: i32 = 2;
static mut M: i32 = 3;

const CR: &'static mut i32 = &mut C; //~ ERROR E0658
static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR E0658
                                              //~| ERROR E0019
                                              //~| ERROR cannot borrow
static CONST_REF: &'static mut i32 = &mut C; //~ ERROR E0658
static STATIC_MUT_REF: &'static mut i32 = unsafe { &mut M }; //~ ERROR E0658
fn main() {}