2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2012-05-13 22:12:58 -07:00
|
|
|
// aux-build:issue2378a.rs
|
|
|
|
// aux-build:issue2378b.rs
|
2013-04-18 14:48:59 -07:00
|
|
|
// xfail-fast - check-fast doesn't understand aux-build
|
2012-05-13 22:12:58 -07:00
|
|
|
|
2013-04-18 14:48:59 -07:00
|
|
|
extern mod issue2378a;
|
|
|
|
extern mod issue2378b;
|
2012-05-13 22:12:58 -07:00
|
|
|
|
2013-04-18 14:48:59 -07:00
|
|
|
use issue2378a::{just};
|
|
|
|
use issue2378b::{two_maybes};
|
2012-05-13 22:12:58 -07:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2013-04-18 14:48:59 -07:00
|
|
|
let x = two_maybes{a: just(3), b: just(5)};
|
2013-03-28 18:39:09 -07:00
|
|
|
assert!(x[0u] == (3, 5));
|
2012-05-13 22:12:58 -07:00
|
|
|
}
|