]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-match-check.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / consts / const-match-check.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // revisions: matchck eval1 eval2
12
13 #[cfg(matchck)]
14 const X: i32 = { let 0 = 0; 0 };
15 //[matchck]~^ ERROR refutable pattern in local binding
16
17 #[cfg(matchck)]
18 static Y: i32 = { let 0 = 0; 0 };
19 //[matchck]~^ ERROR refutable pattern in local binding
20
21 #[cfg(matchck)]
22 trait Bar {
23     const X: i32 = { let 0 = 0; 0 };
24     //[matchck]~^ ERROR refutable pattern in local binding
25 }
26
27 #[cfg(matchck)]
28 impl Bar for () {
29     const X: i32 = { let 0 = 0; 0 };
30     //[matchck]~^ ERROR refutable pattern in local binding
31 }
32
33 #[cfg(eval1)]
34 enum Foo {
35     A = { let 0 = 0; 0 },
36     //[eval1]~^ ERROR refutable pattern in local binding
37 }
38
39 fn main() {
40     #[cfg(eval2)]
41     let x: [i32; { let 0 = 0; 0 }] = [];
42     //[eval2]~^ ERROR refutable pattern in local binding
43 }