summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/dbg_macro.stderr
blob: a3e7a7162e51dff7516e79451764518e33e6f6bf (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:5:22
   |
LL |     if let Some(n) = dbg!(n.checked_sub(4)) { n } else { n }
   |                      ^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::dbg-macro` implied by `-D warnings`
help: ensure to avoid having uses of it in version control
   |
LL |     if let Some(n) = n.checked_sub(4) { n } else { n }
   |                      ~~~~~~~~~~~~~~~~

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:9:8
   |
LL |     if dbg!(n <= 1) {
   |        ^^^^^^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |     if n <= 1 {
   |        ~~~~~~

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:10:9
   |
LL |         dbg!(1)
   |         ^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |         1
   |

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:12:9
   |
LL |         dbg!(n * factorial(n - 1))
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |         n * factorial(n - 1)
   |

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:17:5
   |
LL |     dbg!(42);
   |     ^^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |     42;
   |     ~~

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:18:5
   |
LL |     dbg!(dbg!(dbg!(42)));
   |     ^^^^^^^^^^^^^^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |     dbg!(dbg!(42));
   |     ~~~~~~~~~~~~~~

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:19:14
   |
LL |     foo(3) + dbg!(factorial(4));
   |              ^^^^^^^^^^^^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |     foo(3) + factorial(4);
   |              ~~~~~~~~~~~~

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:20:5
   |
LL |     dbg!(1, 2, dbg!(3, 4));
   |     ^^^^^^^^^^^^^^^^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |     (1, 2, dbg!(3, 4));
   |     ~~~~~~~~~~~~~~~~~~

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:21:5
   |
LL |     dbg!(1, 2, 3, 4, 5);
   |     ^^^^^^^^^^^^^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |     (1, 2, 3, 4, 5);
   |     ~~~~~~~~~~~~~~~

error: `dbg!` macro is intended as a debugging tool
  --> $DIR/dbg_macro.rs:41:9
   |
LL |         dbg!(2);
   |         ^^^^^^^
   |
help: ensure to avoid having uses of it in version control
   |
LL |         2;
   |         ~

error: aborting due to 10 previous errors