about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0017.rs
blob: 0f00ddac579d6beacd98f651721f49377dcfe18e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ normalize-stderr: "\(size: ., align: .\)" -> ""
//@ normalize-stderr: " +│ ╾─+╼" -> ""

static X: i32 = 1;
const C: i32 = 2;
static mut M: i32 = 3;

const CR: &'static mut i32 = &mut C; //~ ERROR mutable borrows of temporaries
//~| WARN taking a mutable

static STATIC_REF: &'static mut i32 = &mut X; //~ ERROR cannot borrow immutable static item `X` as mutable

static CONST_REF: &'static mut i32 = &mut C; //~ ERROR mutable borrows of temporaries
//~| WARN taking a mutable

fn main() {}