added test case for issue 5927

This commit is contained in:
John Clements 2013-04-18 15:49:28 -07:00
parent add60bb081
commit cc4e0186ac

View File

@ -0,0 +1,20 @@
// Copyright 2013 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 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// error-pattern:cant-use-x-as-pattern-mumble
fn main() {
let z = match 3 {
x() => x
};
assert_eq!(z,3);
}