mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
b849e10d38
`span_suggestions` is to provide mutually exclusive suggestions. When it was introduced, we made its behavior be that if a single suggestion is given to it, we present the suggestion inline, otherwise in patch format. Changing this to make all of its uses be verbose, as that is closer in intent of output.
16 lines
477 B
Plaintext
16 lines
477 B
Plaintext
error[E0539]: malformed `recursion_limit` attribute input
|
|
--> $DIR/no-value.rs:3:1
|
|
|
|
|
LL | #![recursion_limit]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: for more information, visit <https://doc.rust-lang.org/reference/attributes/limits.html#the-recursion_limit-attribute>
|
|
help: must be of the form
|
|
|
|
|
LL | #![recursion_limit = "N"]
|
|
| +++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0539`.
|