Add test of underscore variable in format string

This commit is contained in:
David Tolnay 2024-11-04 15:15:44 -05:00
parent 6b48b090f8
commit 4d397bc186
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,7 @@
use thiserror::Error;
#[derive(Error, Debug)]
#[error("{_}")]
pub struct Error;
fn main() {}

View 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