File: cannot-move-block-spans.rs

package info (click to toggle)
rustc 1.70.0%2Bdfsg1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 722,120 kB
  • sloc: xml: 147,962; javascript: 10,210; sh: 8,590; python: 8,220; ansic: 5,901; cpp: 4,635; makefile: 4,001; asm: 2,856
file content (22 lines) | stat: -rw-r--r-- 703 bytes parent folder | download | duplicates (27)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Test that the we point to the inner expression when moving out to initialize
// a variable, and that we don't give a useless suggestion such as &{ *r }.

pub fn deref(r: &String) {
    let x = { *r }; //~ ERROR
    let y = unsafe { *r }; //~ ERROR
    let z = loop { break *r; }; //~ ERROR
}

pub fn index(arr: [String; 2]) {
    let x = { arr[0] }; //~ ERROR
    let y = unsafe { arr[0] }; //~ ERROR
    let z = loop { break arr[0]; }; //~ ERROR
}

pub fn additional_statement_cases(r: &String) {
    let x = { let mut u = 0; u += 1; *r }; //~ ERROR
    let y = unsafe { let mut u = 0; u += 1; *r }; //~ ERROR
    let z = loop { let mut u = 0; u += 1; break *r; u += 2; }; //~ ERROR
}

fn main() {}