rust/tests/ui/replace_consts.stderr

219 lines
6.2 KiB
Text
Raw Normal View History

error: using `ATOMIC_BOOL_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:24:17
|
2018-10-06 18:18:06 +02:00
24 | { let foo = ATOMIC_BOOL_INIT; };
| ^^^^^^^^^^^^^^^^ help: try this: `AtomicBool::new(false)`
|
note: lint level defined here
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:15:9
|
2018-10-06 18:18:06 +02:00
15 | #![deny(clippy::replace_consts)]
| ^^^^^^^^^^^^^^^^^^^^^^
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_ISIZE_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:25:17
|
2018-10-06 18:18:06 +02:00
25 | { let foo = ATOMIC_ISIZE_INIT; };
| ^^^^^^^^^^^^^^^^^ help: try this: `AtomicIsize::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_I8_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:26:17
|
2018-10-06 18:18:06 +02:00
26 | { let foo = ATOMIC_I8_INIT; };
| ^^^^^^^^^^^^^^ help: try this: `AtomicI8::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_I16_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:27:17
|
2018-10-06 18:18:06 +02:00
27 | { let foo = ATOMIC_I16_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicI16::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_I32_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:28:17
|
2018-10-06 18:18:06 +02:00
28 | { let foo = ATOMIC_I32_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicI32::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_I64_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:29:17
|
2018-10-06 18:18:06 +02:00
29 | { let foo = ATOMIC_I64_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicI64::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_USIZE_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:30:17
|
2018-10-06 18:18:06 +02:00
30 | { let foo = ATOMIC_USIZE_INIT; };
| ^^^^^^^^^^^^^^^^^ help: try this: `AtomicUsize::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_U8_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:31:17
|
2018-10-06 18:18:06 +02:00
31 | { let foo = ATOMIC_U8_INIT; };
| ^^^^^^^^^^^^^^ help: try this: `AtomicU8::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_U16_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:32:17
|
2018-10-06 18:18:06 +02:00
32 | { let foo = ATOMIC_U16_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicU16::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_U32_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:33:17
|
2018-10-06 18:18:06 +02:00
33 | { let foo = ATOMIC_U32_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicU32::new(0)`
2018-03-26 04:26:10 +02:00
error: using `ATOMIC_U64_INIT`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:34:17
|
2018-10-06 18:18:06 +02:00
34 | { let foo = ATOMIC_U64_INIT; };
| ^^^^^^^^^^^^^^^ help: try this: `AtomicU64::new(0)`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:36:17
|
2018-10-06 18:18:06 +02:00
36 | { let foo = std::isize::MIN; };
| ^^^^^^^^^^^^^^^ help: try this: `isize::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:37:17
|
2018-10-06 18:18:06 +02:00
37 | { let foo = std::i8::MIN; };
| ^^^^^^^^^^^^ help: try this: `i8::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:38:17
|
2018-10-06 18:18:06 +02:00
38 | { let foo = std::i16::MIN; };
| ^^^^^^^^^^^^^ help: try this: `i16::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:39:17
|
2018-10-06 18:18:06 +02:00
39 | { let foo = std::i32::MIN; };
| ^^^^^^^^^^^^^ help: try this: `i32::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:40:17
|
2018-10-06 18:18:06 +02:00
40 | { let foo = std::i64::MIN; };
| ^^^^^^^^^^^^^ help: try this: `i64::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:41:17
|
2018-10-06 18:18:06 +02:00
41 | { let foo = std::i128::MIN; };
| ^^^^^^^^^^^^^^ help: try this: `i128::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:42:17
|
2018-10-06 18:18:06 +02:00
42 | { let foo = std::usize::MIN; };
| ^^^^^^^^^^^^^^^ help: try this: `usize::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:43:17
|
2018-10-06 18:18:06 +02:00
43 | { let foo = std::u8::MIN; };
| ^^^^^^^^^^^^ help: try this: `u8::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:44:17
|
2018-10-06 18:18:06 +02:00
44 | { let foo = std::u16::MIN; };
| ^^^^^^^^^^^^^ help: try this: `u16::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:45:17
|
2018-10-06 18:18:06 +02:00
45 | { let foo = std::u32::MIN; };
| ^^^^^^^^^^^^^ help: try this: `u32::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:46:17
|
2018-10-06 18:18:06 +02:00
46 | { let foo = std::u64::MIN; };
| ^^^^^^^^^^^^^ help: try this: `u64::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MIN`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:47:17
|
2018-10-06 18:18:06 +02:00
47 | { let foo = std::u128::MIN; };
| ^^^^^^^^^^^^^^ help: try this: `u128::min_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:49:17
|
2018-10-06 18:18:06 +02:00
49 | { let foo = std::isize::MAX; };
| ^^^^^^^^^^^^^^^ help: try this: `isize::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:50:17
|
2018-10-06 18:18:06 +02:00
50 | { let foo = std::i8::MAX; };
| ^^^^^^^^^^^^ help: try this: `i8::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:51:17
|
2018-10-06 18:18:06 +02:00
51 | { let foo = std::i16::MAX; };
| ^^^^^^^^^^^^^ help: try this: `i16::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:52:17
|
2018-10-06 18:18:06 +02:00
52 | { let foo = std::i32::MAX; };
| ^^^^^^^^^^^^^ help: try this: `i32::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:53:17
|
2018-10-06 18:18:06 +02:00
53 | { let foo = std::i64::MAX; };
| ^^^^^^^^^^^^^ help: try this: `i64::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:54:17
|
2018-10-06 18:18:06 +02:00
54 | { let foo = std::i128::MAX; };
| ^^^^^^^^^^^^^^ help: try this: `i128::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:55:17
|
2018-10-06 18:18:06 +02:00
55 | { let foo = std::usize::MAX; };
| ^^^^^^^^^^^^^^^ help: try this: `usize::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:56:17
|
2018-10-06 18:18:06 +02:00
56 | { let foo = std::u8::MAX; };
| ^^^^^^^^^^^^ help: try this: `u8::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:57:17
|
2018-10-06 18:18:06 +02:00
57 | { let foo = std::u16::MAX; };
| ^^^^^^^^^^^^^ help: try this: `u16::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:58:17
|
2018-10-06 18:18:06 +02:00
58 | { let foo = std::u32::MAX; };
| ^^^^^^^^^^^^^ help: try this: `u32::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:59:17
|
2018-10-06 18:18:06 +02:00
59 | { let foo = std::u64::MAX; };
| ^^^^^^^^^^^^^ help: try this: `u64::max_value()`
2018-03-26 04:26:10 +02:00
error: using `MAX`
2018-10-06 18:18:06 +02:00
--> $DIR/replace_consts.rs:60:17
|
2018-10-06 18:18:06 +02:00
60 | { let foo = std::u128::MAX; };
| ^^^^^^^^^^^^^^ help: try this: `u128::max_value()`
2018-03-26 04:26:10 +02:00
2018-01-16 17:06:27 +01:00
error: aborting due to 35 previous errors
2018-03-26 04:26:10 +02:00