]> 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 1922478165fd30232aea3cb6c8242c96a9e93f80..ccf8f61c4a92c7528944a3c1cf6066b9e1c969d3 100644 (file)
@@ -14,7 +14,11 @@ fn str_lit_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() {}