]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/string_lit_as_bytes.fixed
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / string_lit_as_bytes.fixed
index 1922478165fd30232aea3cb6c8242c96a9e93f80..df2256e4f97de98afe0285e587ac9924c000fb3a 100644 (file)
@@ -8,13 +8,23 @@ fn str_lit_as_bytes() {
 
     let bs = br###"raw string with 3# plus " ""###;
 
+    let bs = b"lit to string".to_vec();
+    let bs = b"lit to owned".to_vec();
+
     // 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 ubs = "☃".to_string().into_bytes();
+    let ubs = "this is also too long and shouldn't be fixed".to_string().into_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!("string_lit_as_bytes.rs");
+
+    let _ = b"string with newline\t\n";
 }
 
 fn main() {}