]> git.lizzy.rs Git - rust.git/commitdiff
Remove unnecessary tidy ignore directives
authorvarkor <github@varkor.com>
Mon, 22 Apr 2019 19:56:27 +0000 (20:56 +0100)
committervarkor <github@varkor.com>
Tue, 23 Apr 2019 10:42:15 +0000 (11:42 +0100)
src/test/rustdoc-ui/intra-link-span-ice-55723.rs
src/test/rustdoc-ui/intra-link-span-ice-55723.stderr
src/test/ui/parser/byte-string-literals.rs
src/test/ui/parser/byte-string-literals.stderr

index 5891a553e3255f7e982a98c73b8be54810d05d88..c7a13bbf606cbe68d0db8bbfa9b87c05021e31e0 100644 (file)
@@ -1,5 +1,3 @@
-// ignore-tidy-end-whitespace
-
 #![deny(intra_doc_link_resolution_failure)]
 
 // An error in calculating spans while reporting intra-doc link resolution errors caused rustdoc to
index 7ee9ca47923954780e0e6d0887a6bd915a642acb..79702a1a546b7497fbebf082a0de0717bdf1e51a 100644 (file)
@@ -1,11 +1,11 @@
 error: `[i]` cannot be resolved, ignoring it...
-  --> $DIR/intra-link-span-ice-55723.rs:11:10
+  --> $DIR/intra-link-span-ice-55723.rs:9:10
    |
 LL | /// (arr[i])
    |           ^ cannot be resolved, ignoring
    |
 note: lint level defined here
-  --> $DIR/intra-link-span-ice-55723.rs:3:9
+  --> $DIR/intra-link-span-ice-55723.rs:1:9
    |
 LL | #![deny(intra_doc_link_resolution_failure)]
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
index d028f28655b8e7ace270330e789956ebbefa34e2..8d8ee4da987176134799b5835c1c5ea3d91f4ae1 100644 (file)
@@ -1,8 +1,5 @@
 // compile-flags: -Z continue-parse-after-error
 
-
-// ignore-tidy-tab
-
 static FOO: &'static [u8] = b"\f";  //~ ERROR unknown byte escape
 
 pub fn main() {
index 6701cfd8e66c2f1dddf9ecb74feb60d2f65d8c63..b8554844440105035d4574bb6e74780a846f3e96 100644 (file)
@@ -1,29 +1,29 @@
 error: unknown byte escape: f
-  --> $DIR/byte-string-literals.rs:6:32
+  --> $DIR/byte-string-literals.rs:3:32
    |
 LL | static FOO: &'static [u8] = b"\f";
    |                                ^ unknown byte escape
 
 error: unknown byte escape: f
-  --> $DIR/byte-string-literals.rs:9:8
+  --> $DIR/byte-string-literals.rs:6:8
    |
 LL |     b"\f";
    |        ^ unknown byte escape
 
 error: invalid character in numeric character escape: Z
-  --> $DIR/byte-string-literals.rs:10:10
+  --> $DIR/byte-string-literals.rs:7:10
    |
 LL |     b"\x0Z";
    |          ^
 
 error: byte constant must be ASCII. Use a \xHH escape for a non-ASCII byte
-  --> $DIR/byte-string-literals.rs:11:7
+  --> $DIR/byte-string-literals.rs:8:7
    |
 LL |     b"é";
    |       ^
 
 error: unterminated double quote byte string
-  --> $DIR/byte-string-literals.rs:12:7
+  --> $DIR/byte-string-literals.rs:9:7
    |
 LL |       b"a
    |  _______^