]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/string_lit_as_bytes.rs
Auto merge of #9684 - kraktus:ref_option_ref, r=xFrednet
[rust.git] / tests / ui / string_lit_as_bytes.rs
index ea8c712854bc139da024c3039166bf64a83479a1..c6bf8f732ed9f615d1ea2d660d6ed7602513270b 100644 (file)
@@ -6,14 +6,25 @@
 fn str_lit_as_bytes() {
     let bs = "hello there".as_bytes();
 
-    let bs = r###"raw string with three ### in it and some " ""###.as_bytes();
+    let bs = r###"raw string with 3# plus " ""###.as_bytes();
 
-    // no warning, because this cannot be written as a byte string literal:
+    let bs = "lit to string".to_string().into_bytes();
+    let bs = "lit to owned".to_owned().into_bytes();
+
+    // 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_str!("entry.rs").as_bytes();
+    let current_version = env!("CARGO_PKG_VERSION").as_bytes();
+
+    let includestr = include_str!("string_lit_as_bytes.rs").as_bytes();
+
+    let _ = "string with newline\t\n".as_bytes();
 }
 
 fn main() {}