about summary refs log tree commit diff
path: root/src/test/ui/rfcs/rfc-2005-default-binding-mode/lit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfcs/rfc-2005-default-binding-mode/lit.rs')
-rw-r--r--src/test/ui/rfcs/rfc-2005-default-binding-mode/lit.rs34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/test/ui/rfcs/rfc-2005-default-binding-mode/lit.rs b/src/test/ui/rfcs/rfc-2005-default-binding-mode/lit.rs
deleted file mode 100644
index 9379753598e..00000000000
--- a/src/test/ui/rfcs/rfc-2005-default-binding-mode/lit.rs
+++ /dev/null
@@ -1,34 +0,0 @@
-// run-pass
-#![allow(dead_code)]
-fn with_u8() {
-    let s = 5u8;
-    let r = match &s {
-        4 => false,
-        5 => true,
-        _ => false,
-    };
-    assert!(r);
-}
-
-// A string literal isn't mistaken for a non-ref pattern (in which case we'd
-// deref `s` and mess things up).
-fn with_str() {
-    let s: &'static str = "abc";
-    match s {
-            "abc" => true,
-            _ => panic!(),
-    };
-}
-
-// Ditto with byte strings.
-fn with_bytes() {
-    let s: &'static [u8] = b"abc";
-    match s {
-        b"abc" => true,
-        _ => panic!(),
-    };
-}
-
-pub fn main() {
-    with_str();
-}