Skip to content

Commit

Permalink
add regression test for #85907
Browse files Browse the repository at this point in the history
  • Loading branch information
TaKO8Ki committed Jun 27, 2022
1 parent 4334739 commit 89a23bf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/test/ui/consts/const-eval/issue-85907.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const fn hey() -> usize {
panic!(123); //~ ERROR argument to `panic!()` in a const context must have type `&str`
}

fn main() {
let _: [u8; hey()] = todo!();
}
10 changes: 10 additions & 0 deletions src/test/ui/consts/const-eval/issue-85907.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
error: argument to `panic!()` in a const context must have type `&str`
--> $DIR/issue-85907.rs:2:5
|
LL | panic!(123);
| ^^^^^^^^^^^
|
= note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to previous error

0 comments on commit 89a23bf

Please sign in to comment.