summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/match-with-ret-arm.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/binding/match-with-ret-arm.rs')
-rw-r--r--src/test/ui/binding/match-with-ret-arm.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/binding/match-with-ret-arm.rs b/src/test/ui/binding/match-with-ret-arm.rs
deleted file mode 100644
index 58a909641..000000000
--- a/src/test/ui/binding/match-with-ret-arm.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// run-pass
-pub fn main() {
- // sometimes we have had trouble finding
- // the right type for f, as we unified
- // bot and u32 here
- let f = match "1234".parse::<usize>().ok() {
- None => return (),
- Some(num) => num as u32
- };
- assert_eq!(f, 1234);
- println!("{}", f)
-}