@@ -12,7 +12,7 @@ LL | if let Some(n) = n.checked_sub(4) { n } else { n }
12
12
| ~~~~~~~~~~~~~~~~
13
13
14
14
error: the `dbg!` macro is intended as a debugging tool
15
- --> $DIR/dbg_macro/dbg_macro.rs:9 :8
15
+ --> $DIR/dbg_macro/dbg_macro.rs:12 :8
16
16
|
17
17
LL | if dbg!(n <= 1) {
18
18
| ^^^^^^^^^^^^
@@ -23,29 +23,29 @@ LL | if n <= 1 {
23
23
| ~~~~~~
24
24
25
25
error: the `dbg!` macro is intended as a debugging tool
26
- --> $DIR/dbg_macro/dbg_macro.rs:10 :9
26
+ --> $DIR/dbg_macro/dbg_macro.rs:13 :9
27
27
|
28
28
LL | dbg!(1)
29
29
| ^^^^^^^
30
30
|
31
31
help: remove the invocation before committing it to a version control system
32
32
|
33
33
LL | 1
34
- |
34
+ | ~
35
35
36
36
error: the `dbg!` macro is intended as a debugging tool
37
- --> $DIR/dbg_macro/dbg_macro.rs:12 :9
37
+ --> $DIR/dbg_macro/dbg_macro.rs:15 :9
38
38
|
39
39
LL | dbg!(n * factorial(n - 1))
40
40
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
41
41
|
42
42
help: remove the invocation before committing it to a version control system
43
43
|
44
44
LL | n * factorial(n - 1)
45
- |
45
+ | ~~~~~~~~~~~~~~~~~~~~
46
46
47
47
error: the `dbg!` macro is intended as a debugging tool
48
- --> $DIR/dbg_macro/dbg_macro.rs:17 :5
48
+ --> $DIR/dbg_macro/dbg_macro.rs:20 :5
49
49
|
50
50
LL | dbg!(42);
51
51
| ^^^^^^^^
@@ -56,7 +56,7 @@ LL | 42;
56
56
| ~~
57
57
58
58
error: the `dbg!` macro is intended as a debugging tool
59
- --> $DIR/dbg_macro/dbg_macro.rs:18 :5
59
+ --> $DIR/dbg_macro/dbg_macro.rs:21 :5
60
60
|
61
61
LL | dbg!(dbg!(dbg!(42)));
62
62
| ^^^^^^^^^^^^^^^^^^^^
@@ -67,7 +67,7 @@ LL | dbg!(dbg!(42));
67
67
| ~~~~~~~~~~~~~~
68
68
69
69
error: the `dbg!` macro is intended as a debugging tool
70
- --> $DIR/dbg_macro/dbg_macro.rs:19 :14
70
+ --> $DIR/dbg_macro/dbg_macro.rs:22 :14
71
71
|
72
72
LL | foo(3) + dbg!(factorial(4));
73
73
| ^^^^^^^^^^^^^^^^^^
@@ -78,7 +78,7 @@ LL | foo(3) + factorial(4);
78
78
| ~~~~~~~~~~~~
79
79
80
80
error: the `dbg!` macro is intended as a debugging tool
81
- --> $DIR/dbg_macro/dbg_macro.rs:20 :5
81
+ --> $DIR/dbg_macro/dbg_macro.rs:23 :5
82
82
|
83
83
LL | dbg!(1, 2, dbg!(3, 4));
84
84
| ^^^^^^^^^^^^^^^^^^^^^^
@@ -89,7 +89,7 @@ LL | (1, 2, dbg!(3, 4));
89
89
| ~~~~~~~~~~~~~~~~~~
90
90
91
91
error: the `dbg!` macro is intended as a debugging tool
92
- --> $DIR/dbg_macro/dbg_macro.rs:21 :5
92
+ --> $DIR/dbg_macro/dbg_macro.rs:24 :5
93
93
|
94
94
LL | dbg!(1, 2, 3, 4, 5);
95
95
| ^^^^^^^^^^^^^^^^^^^
0 commit comments