Skip to content

Commit efa7b12

Browse files
committed
Add test
1 parent 1473101 commit efa7b12

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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+
//[eval2]~| ERROR constant evaluation error
44+
}

0 commit comments

Comments
 (0)