summaryrefslogtreecommitdiffstats
path: root/src/test/pretty/match-naked-expr-medium.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pretty/match-naked-expr-medium.rs')
-rw-r--r--src/test/pretty/match-naked-expr-medium.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/pretty/match-naked-expr-medium.rs b/src/test/pretty/match-naked-expr-medium.rs
deleted file mode 100644
index 836af9900..000000000
--- a/src/test/pretty/match-naked-expr-medium.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// pp-exact
-
-fn main() {
- let x = Some(3);
- let _y =
- match x {
- Some(_) =>
- ["some(_)".to_string(), "not".to_string(), "SO".to_string(),
- "long".to_string(), "string".to_string()],
- None =>
- ["none".to_string(), "a".to_string(), "a".to_string(),
- "a".to_string(), "a".to_string()],
- };
-}