auto merge of #6121 : luqmana/rust/newtype-cc, r=graydon

#6086
This commit is contained in:
bors 2013-04-30 02:21:37 -07:00
commit c081ffbd1e
5 changed files with 29 additions and 0 deletions

View file

@ -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)
}
}