summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/match-unsized.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/binding/match-unsized.rs')
-rw-r--r--src/test/ui/binding/match-unsized.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/binding/match-unsized.rs b/src/test/ui/binding/match-unsized.rs
deleted file mode 100644
index 41937a557..000000000
--- a/src/test/ui/binding/match-unsized.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// run-pass
-fn main() {
- let data: &'static str = "Hello, World!";
- match data {
- &ref xs => {
- assert_eq!(data, xs);
- }
- }
-}