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.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/as_underscore.stderr b/src/tools/clippy/tests/ui/as_underscore.stderr
new file mode 100644
index 000000000..d7cd58d96
--- /dev/null
+++ b/src/tools/clippy/tests/ui/as_underscore.stderr
@@ -0,0 +1,20 @@
+error: using `as _` conversion
+ --> $DIR/as_underscore.rs:9:9
+ |
+LL | foo(n as _);
+ | ^^^^^-
+ | |
+ | help: consider giving the type explicitly: `usize`
+ |
+ = note: `-D clippy::as-underscore` implied by `-D warnings`
+
+error: using `as _` conversion
+ --> $DIR/as_underscore.rs:12:18
+ |
+LL | let _n: u8 = n as _;
+ | ^^^^^-
+ | |
+ | help: consider giving the type explicitly: `u8`
+
+error: aborting due to 2 previous errors
+