mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Add test of underscore variable in format string
This commit is contained in:
parent
6b48b090f8
commit
4d397bc186
2 changed files with 14 additions and 0 deletions
7
tests/ui/display-underscore.rs
Normal file
7
tests/ui/display-underscore.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("{_}")]
|
||||
pub struct Error;
|
||||
|
||||
fn main() {}
|
7
tests/ui/display-underscore.stderr
Normal file
7
tests/ui/display-underscore.stderr
Normal file
|
@ -0,0 +1,7 @@
|
|||
error: invalid format string: invalid argument name `_`
|
||||
--> tests/ui/display-underscore.rs:4:11
|
||||
|
|
||||
4 | #[error("{_}")]
|
||||
| ^ invalid argument name in format string
|
||||
|
|
||||
= note: argument name cannot be a single underscore
|
Loading…
Add table
Add a link
Reference in a new issue