mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
18 lines
576 B
Plaintext
18 lines
576 B
Plaintext
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)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|