]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/string_lit_as_bytes.fixed
Auto merge of #6298 - JohnTitor:fix-example, r=llogiq
[rust.git] / tests / ui / string_lit_as_bytes.fixed
index a70504656d9e2feab0292b1a3beedb65633528db..ccf8f61c4a92c7528944a3c1cf6066b9e1c969d3 100644 (file)
@@ -6,14 +6,19 @@
 fn str_lit_as_bytes() {
     let bs = b"hello there";
 
-    let bs = br###"raw string with three ### in it and some " ""###;
+    let bs = br###"raw string with 3# plus " ""###;
 
-    // no warning, because this cannot be written as a byte string literal:
+    // no warning, because these cannot be written as byte string literals:
     let ubs = "☃".as_bytes();
+    let ubs = "hello there! this is a very long string".as_bytes();
 
     let strify = stringify!(foobar).as_bytes();
 
-    let includestr = include_bytes!("entry.rs");
+    let current_version = env!("CARGO_PKG_VERSION").as_bytes();
+
+    let includestr = include_bytes!("entry_unfixable.rs");
+
+    let _ = b"string with newline\t\n";
 }
 
 fn main() {}