2023-07-20 14:01:27 -05:00
|
|
|
error: function cannot return without recursing
|
|
|
|
--> $DIR/lint-unconditional-drop-recursion.rs:11:5
|
|
|
|
|
|
|
|
|
LL | fn drop(&mut self) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ cannot return without recursing
|
|
|
|
LL | let _ = RecursiveDrop;
|
|
|
|
| - recursive call site
|
|
|
|
|
|
|
|
|
= help: a `loop` may express intention better if this is on purpose
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/lint-unconditional-drop-recursion.rs:5:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unconditional_recursion)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-07-20 14:01:27 -05:00
|
|
|
|