summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/as_underscore.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/as_underscore.stderr')
-rw-r--r--src/tools/clippy/tests/ui/as_underscore.stderr5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/clippy/tests/ui/as_underscore.stderr b/src/tools/clippy/tests/ui/as_underscore.stderr
index d7cd58d96..1842eeeac 100644
--- a/src/tools/clippy/tests/ui/as_underscore.stderr
+++ b/src/tools/clippy/tests/ui/as_underscore.stderr
@@ -1,5 +1,5 @@
error: using `as _` conversion
- --> $DIR/as_underscore.rs:9:9
+ --> $DIR/as_underscore.rs:7:9
|
LL | foo(n as _);
| ^^^^^-
@@ -7,9 +7,10 @@ LL | foo(n as _);
| help: consider giving the type explicitly: `usize`
|
= note: `-D clippy::as-underscore` implied by `-D warnings`
+ = help: to override `-D warnings` add `#[allow(clippy::as_underscore)]`
error: using `as _` conversion
- --> $DIR/as_underscore.rs:12:18
+ --> $DIR/as_underscore.rs:10:18
|
LL | let _n: u8 = n as _;
| ^^^^^-