summaryrefslogtreecommitdiffstats
path: root/src/test/ui/json-bom-plus-crlf-multifile-aux.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:06:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:06:37 +0000
commit246f239d9f40f633160f0c18f87a20922d4e77bb (patch)
tree5a88572663584b3d4d28e5a20e10abab1be40884 /src/test/ui/json-bom-plus-crlf-multifile-aux.rs
parentReleasing progress-linux version 1.64.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-246f239d9f40f633160f0c18f87a20922d4e77bb.tar.xz
rustc-246f239d9f40f633160f0c18f87a20922d4e77bb.zip
Merging debian version 1.65.0+dfsg1-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/json-bom-plus-crlf-multifile-aux.rs')
-rw-r--r--src/test/ui/json-bom-plus-crlf-multifile-aux.rs27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/ui/json-bom-plus-crlf-multifile-aux.rs b/src/test/ui/json-bom-plus-crlf-multifile-aux.rs
deleted file mode 100644
index 991ea1d85..000000000
--- a/src/test/ui/json-bom-plus-crlf-multifile-aux.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-// (This line has BOM so it's ignored by compiletest for directives)
-//
-// ignore-test Not a test. Used by other tests
-// ignore-tidy-cr
-
-// For easier verifying, the byte offsets in this file should match those
-// in the json-bom-plus-crlf.rs - given the actual fn is identical (just with
-// a different, but equally sized name), the easiest way to do this is to
-// ensure the two files are of equal size on disk.
-// Padding............................
-
-// N.B., this file needs CRLF line endings. The .gitattributes file in
-// this directory should enforce it.
-
-pub fn test() {
-
- let s : String = 1; // Error in the middle of line.
-
- let s : String = 1
- ; // Error before the newline.
-
- let s : String =
-1; // Error after the newline.
-
- let s : String = (
- ); // Error spanning the newline.
-}