From ccaf0b4654a3c71b58b92bdc86da03126d494a20 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Tue, 31 Dec 2013 19:07:41 -0500 Subject: Remove a fixme pcwalton says this is right, and it looks right to me too. Closes #4731 --- .../compile-fail/struct-pattern-match-useless.rs | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/test/compile-fail/struct-pattern-match-useless.rs (limited to 'src/test/compile-fail') diff --git a/src/test/compile-fail/struct-pattern-match-useless.rs b/src/test/compile-fail/struct-pattern-match-useless.rs new file mode 100644 index 00000000000..b9c0be9276d --- /dev/null +++ b/src/test/compile-fail/struct-pattern-match-useless.rs @@ -0,0 +1,23 @@ +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +struct Foo { + x: int, + y: int, +} + +pub fn main() { + let a = Foo { x: 1, y: 2 }; + match a { + Foo { x: x, y: y } => (), + Foo { .. } => () //~ ERROR unreachable pattern + } + +} -- cgit 1.4.1-3-g733a5