mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Provide suggestion for anyone grepping for concat
This commit is contained in:
parent
04d2e6c998
commit
fbe9804476
2 changed files with 5 additions and 3 deletions
|
@ -2,6 +2,8 @@ use thiserror::Error;
|
|||
|
||||
macro_rules! error_type {
|
||||
($name:ident, $what:expr) => {
|
||||
// Use #[error("invalid {}", $what)] instead.
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error(concat!("invalid ", $what))]
|
||||
pub struct $name;
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
error: expected string literal
|
||||
--> $DIR/concat-display.rs:6:17
|
||||
--> $DIR/concat-display.rs:8:17
|
||||
|
|
||||
6 | #[error(concat!("invalid ", $what))]
|
||||
8 | #[error(concat!("invalid ", $what))]
|
||||
| ^^^^^^
|
||||
...
|
||||
11 | error_type!(Error, "foo");
|
||||
13 | error_type!(Error, "foo");
|
||||
| -------------------------- in this macro invocation
|
||||
|
|
||||
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue