]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/println_empty_string.rs
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / println_empty_string.rs
index 890f5f68476031be617714b7faea400cc8b66e95..80fdb3e6e2105412918e757fa7790a8697d193e9 100644 (file)
@@ -8,4 +8,11 @@ fn main() {
     match "a" {
         _ => println!(""),
     }
+
+    eprintln!();
+    eprintln!("");
+
+    match "a" {
+        _ => eprintln!(""),
+    }
 }