rust/src/test/ui/lint/suggestions.stderr

120 lines
3.7 KiB
Plaintext
Raw Normal View History

warning: denote infinite loops with `loop { ... }`
--> $DIR/suggestions.rs:46:5
|
LL | while true {
| ^^^^^^^^^^ help: use `loop`
|
= note: #[warn(while_true)] on by default
warning: unnecessary parentheses around assigned value
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:49:31
|
LL | let mut registry_no = (format!("NX-{}", 74205));
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:3:21
|
2018-02-22 18:42:32 -06:00
LL | #![warn(unused_mut, unused_parens)] // UI tests pass `-A unused`—see Issue #43896
| ^^^^^^^^^^^^^
warning: use of deprecated attribute `no_debug`: the `#[no_debug]` attribute was an experimental feature that has been deprecated due to lack of demand. See https://github.com/rust-lang/rust/issues/29721
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:42:1
|
2018-02-22 18:42:32 -06:00
LL | #[no_debug] // should suggest removal of deprecated attribute
| ^^^^^^^^^^^ help: remove this attribute
|
= note: #[warn(deprecated)] on by default
warning: variable does not need to be mutable
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:49:13
|
LL | let mut registry_no = (format!("NX-{}", 74205));
| ----^^^^^^^^^^^
| |
| help: remove this `mut`
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:3:9
|
2018-02-22 18:42:32 -06:00
LL | #![warn(unused_mut, unused_parens)] // UI tests pass `-A unused`—see Issue #43896
| ^^^^^^^^^^
warning: variable does not need to be mutable
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:55:13
|
2018-02-22 18:42:32 -06:00
LL | let mut
| _____________^
| |_____________|
| ||
2018-02-22 18:42:32 -06:00
LL | || b = 1;
| ||____________-^
| |____________|
| help: remove this `mut`
error: const items should never be #[no_mangle]
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:6:14
|
LL | #[no_mangle] const DISCOVERY: usize = 1;
| -----^^^^^^^^^^^^^^^^^^^^^^
| |
| help: try a static value: `pub static`
|
= note: #[deny(no_mangle_const_items)] on by default
warning: functions generic over types or consts must be mangled
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:12:1
|
LL | #[no_mangle]
| ------------ help: remove this attribute
2019-03-09 06:03:44 -06:00
LL |
2018-02-22 18:42:32 -06:00
LL | pub fn defiant<T>(_t: T) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: #[warn(no_mangle_generic_items)] on by default
2019-03-12 20:55:37 -05:00
warning: the `warp_factor:` in this pattern is redundant
--> $DIR/suggestions.rs:61:23
|
LL | Equinox { warp_factor: warp_factor } => {}
| ------------^^^^^^^^^^^^
| |
| help: remove this
|
= note: #[warn(non_shorthand_field_patterns)] on by default
error: const items should never be #[no_mangle]
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:22:18
|
LL | #[no_mangle] pub const DAUNTLESS: bool = true;
| ---------^^^^^^^^^^^^^^^^^^^^^^^^
| |
| help: try a static value: `pub static`
warning: functions generic over types or consts must be mangled
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:25:18
|
LL | #[no_mangle] pub fn val_jean<T>() {}
| ------------ ^^^^^^^^^^^^^^^^^^^^^^^
| |
| help: remove this attribute
error: const items should never be #[no_mangle]
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:30:18
|
LL | #[no_mangle] pub(crate) const VETAR: bool = true;
| ----------------^^^^^^^^^^^^^^^^^^^^
| |
| help: try a static value: `pub static`
warning: functions generic over types or consts must be mangled
2018-12-25 09:56:47 -06:00
--> $DIR/suggestions.rs:33:18
|
LL | #[no_mangle] pub(crate) fn crossfield<T>() {}
| ------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| help: remove this attribute
error: aborting due to 3 previous errors