mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
Recognize infinite recursion caused by {self}
This commit is contained in:
parent
e1fa5190b4
commit
6a0eb08569
4 changed files with 68 additions and 18 deletions
9
tests/ui/unconditional-recursion.rs
Normal file
9
tests/ui/unconditional-recursion.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("{self}")]
|
||||
pub struct Error;
|
||||
|
||||
fn main() {
|
||||
@//fail
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue