mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 21:07:38 +03:00
Disable numbered access to positional args on tuples
This commit is contained in:
parent
43844c299b
commit
d3b926132b
7 changed files with 86 additions and 24 deletions
|
@ -131,7 +131,7 @@ fn test_nested() {
|
|||
#[test]
|
||||
fn test_match() {
|
||||
#[derive(Error, Debug)]
|
||||
#[error("{}: {0}", match .1 {
|
||||
#[error("{intro}: {0}", intro = match .1 {
|
||||
Some(n) => format!("error occurred with {}", n),
|
||||
None => "there was an empty error".to_owned(),
|
||||
})]
|
||||
|
|
7
tests/ui/numbered-positional-tuple.rs
Normal file
7
tests/ui/numbered-positional-tuple.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("invalid rdo_lookahead_frames {0} (expected < {})", i32::MAX)]
|
||||
pub struct Error(u32);
|
||||
|
||||
fn main() {}
|
5
tests/ui/numbered-positional-tuple.stderr
Normal file
5
tests/ui/numbered-positional-tuple.stderr
Normal file
|
@ -0,0 +1,5 @@
|
|||
error: ambiguous reference to positional arguments by number in a tuple struct; change this to a named argument
|
||||
--> tests/ui/numbered-positional-tuple.rs:4:61
|
||||
|
|
||||
4 | #[error("invalid rdo_lookahead_frames {0} (expected < {})", i32::MAX)]
|
||||
| ^^^^^^^^
|
Loading…
Add table
Add a link
Reference in a new issue