summary refs log tree commit diff
path: root/src/test/ui/E0508-fail.rs
blob: 20eac6cd3519f2a368ab591c35e5b4c48dbdf4c6 (plain)
1
2
3
4
5
6
7
8
9
10
// revisions: ast mir
//[mir]compile-flags: -Z borrowck=mir

struct NonCopy;

fn main() {
    let array = [NonCopy; 1];
    let _value = array[0];  //[ast]~ ERROR [E0508]
                            //[mir]~^ ERROR [E0508]
}