From 10f290ef68870e54e6b5bcc75e953210a26b46e9 Mon Sep 17 00:00:00 2001 From: Luqman Aden Date: Mon, 29 Apr 2013 17:34:02 -0700 Subject: [PATCH] Add test for cross crate newtype struct in match pattern. --- .../cross-crate-newtype-struct-pat.rs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/test/run-pass/cross-crate-newtype-struct-pat.rs 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 0000000000000..37d5c5c700bef --- /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 or the MIT license +// , 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) + } +}