mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47: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
21
tests/ui/unconditional-recursion.stderr
Normal file
21
tests/ui/unconditional-recursion.stderr
Normal file
|
@ -0,0 +1,21 @@
|
|||
error: expected expression, found `@`
|
||||
--> tests/ui/unconditional-recursion.rs:8:5
|
||||
|
|
||||
8 | @//fail
|
||||
| ^ expected expression
|
||||
|
||||
warning: function cannot return without recursing
|
||||
--> tests/ui/unconditional-recursion.rs:4:9
|
||||
|
|
||||
4 | #[error("{self}")]
|
||||
| ^^^^^^^^
|
||||
| |
|
||||
| cannot return without recursing
|
||||
| recursive call site
|
||||
|
|
||||
= help: a `loop` may express intention better if this is on purpose
|
||||
note: the lint level is defined here
|
||||
--> tests/ui/unconditional-recursion.rs:4:9
|
||||
|
|
||||
4 | #[error("{self}")]
|
||||
| ^^^^^^^^
|
Loading…
Add table
Add a link
Reference in a new issue