Skip to content

Commit dc52040

Browse files
committed
Add test for issue 82518
1 parent 53a7cdd commit dc52040

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#![allow(incomplete_features)]
2+
#![feature(inline_const)]
3+
4+
// rust-lang/rust#82518: ICE with inline-const in match referencing const-generic parameter
5+
6+
fn foo<const V: usize>() {
7+
match 0 {
8+
const { V } => {},
9+
//~^ ERROR const parameters cannot be referenced in patterns [E0158]
10+
_ => {},
11+
}
12+
}
13+
14+
fn main() {
15+
foo::<1>();
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
error[E0158]: const parameters cannot be referenced in patterns
2+
--> $DIR/const-match-pat-generic.rs:8:11
3+
|
4+
LL | const { V } => {},
5+
| ^^^^^
6+
7+
error: aborting due to previous error
8+
9+
For more information about this error, try `rustc --explain E0158`.

0 commit comments

Comments
 (0)