summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/assertions_on_constants.stderr
blob: ec80ec702fb574ad4cf6380b9e7b2179230a8c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
error: `assert!(true)` will be optimized out by the compiler
  --> $DIR/assertions_on_constants.rs:11:5
   |
LL |     assert!(true);
   |     ^^^^^^^^^^^^^
   |
   = note: `-D clippy::assertions-on-constants` implied by `-D warnings`
   = help: remove it
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: `assert!(false)` should probably be replaced
  --> $DIR/assertions_on_constants.rs:12:5
   |
LL |     assert!(false);
   |     ^^^^^^^^^^^^^^
   |
   = help: use `panic!()` or `unreachable!()`
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: `assert!(true)` will be optimized out by the compiler
  --> $DIR/assertions_on_constants.rs:13:5
   |
LL |     assert!(true, "true message");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: remove it
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: `assert!(false, $crate::const_format_args!($($t)+))` should probably be replaced
  --> $DIR/assertions_on_constants.rs:14:5
   |
LL |     assert!(false, "false message");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `panic!($crate::const_format_args!($($t)+))` or `unreachable!($crate::const_format_args!($($t)+))`
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: `assert!(true)` will be optimized out by the compiler
  --> $DIR/assertions_on_constants.rs:20:5
   |
LL |     assert!(B);
   |     ^^^^^^^^^^
   |
   = help: remove it
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: `assert!(false)` should probably be replaced
  --> $DIR/assertions_on_constants.rs:23:5
   |
LL |     assert!(C);
   |     ^^^^^^^^^^
   |
   = help: use `panic!()` or `unreachable!()`
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: `assert!(false, $crate::const_format_args!($($t)+))` should probably be replaced
  --> $DIR/assertions_on_constants.rs:24:5
   |
LL |     assert!(C, "C message");
   |     ^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: use `panic!($crate::const_format_args!($($t)+))` or `unreachable!($crate::const_format_args!($($t)+))`
   = note: this error originates in the macro `assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: `debug_assert!(true)` will be optimized out by the compiler
  --> $DIR/assertions_on_constants.rs:26:5
   |
LL |     debug_assert!(true);
   |     ^^^^^^^^^^^^^^^^^^^
   |
   = help: remove it
   = note: this error originates in the macro `$crate::assert` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 8 previous errors