about summary refs log tree commit diff
path: root/src/docs/as_underscore.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/as_underscore.txt')
-rw-r--r--src/docs/as_underscore.txt21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/docs/as_underscore.txt b/src/docs/as_underscore.txt
deleted file mode 100644
index 2d9b0c35893..00000000000
--- a/src/docs/as_underscore.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-### What it does
-Check for the usage of `as _` conversion using inferred type.
-
-### Why is this bad?
-The conversion might include lossy conversion and dangerous cast that might go
-undetected due to the type being inferred.
-
-The lint is allowed by default as using `_` is less wordy than always specifying the type.
-
-### Example
-```
-fn foo(n: usize) {}
-let n: u16 = 256;
-foo(n as _);
-```
-Use instead:
-```
-fn foo(n: usize) {}
-let n: u16 = 256;
-foo(n as usize);
-```
\ No newline at end of file