diff options
| author | Luqman Aden <me@luqman.ca> | 2013-04-29 17:34:02 -0700 |
|---|---|---|
| committer | Luqman Aden <me@luqman.ca> | 2013-04-29 17:35:36 -0700 |
| commit | 10f290ef68870e54e6b5bcc75e953210a26b46e9 (patch) | |
| tree | 72ce616f2d53a5e0b034c29290658e9b8e3461a8 | |
| parent | b50aa827a07f398d1a9bd81cc66eebe220006f73 (diff) | |
| download | rust-10f290ef68870e54e6b5bcc75e953210a26b46e9.tar.gz rust-10f290ef68870e54e6b5bcc75e953210a26b46e9.zip | |
Add test for cross crate newtype struct in match pattern.
| -rw-r--r-- | src/test/run-pass/cross-crate-newtype-struct-pat.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/run-pass/cross-crate-newtype-struct-pat.rs b/src/test/run-pass/cross-crate-newtype-struct-pat.rs new file mode 100644 index 00000000000..37d5c5c700b --- /dev/null +++ b/src/test/run-pass/cross-crate-newtype-struct-pat.rs @@ -0,0 +1,21 @@ +// 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. + +// xfail-fast +// aux-build:newtype_struct_xc.rs + +extern mod newtype_struct_xc; + +fn main() { + let x = newtype_struct_xc::Au(21); + match x { + newtype_struct_xc::Au(n) => assert_eq!(n, 21) + } +} |
