2012-12-10 19:32:48 -06: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-03-07 17:13:31 -06:00
|
|
|
// xfail-fast - check-fast doesn't understand aux-build
|
|
|
|
// aux-build:cci_nested_lib.rs
|
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod cci_nested_lib;
|
2012-09-05 14:32:05 -05:00
|
|
|
use cci_nested_lib::*;
|
2012-03-07 17:13:31 -06:00
|
|
|
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn main() {
|
2012-03-07 17:13:31 -06:00
|
|
|
let lst = new_int_alist();
|
2012-07-14 00:57:48 -05:00
|
|
|
alist_add(lst, 22, ~"hi");
|
|
|
|
alist_add(lst, 44, ~"ho");
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(alist_get(lst, 22) == ~"hi");
|
|
|
|
fail_unless!(alist_get(lst, 44) == ~"ho");
|
2012-03-07 17:13:31 -06:00
|
|
|
|
|
|
|
let lst = new_int_alist_2();
|
2012-07-14 00:57:48 -05:00
|
|
|
alist_add(lst, 22, ~"hi");
|
|
|
|
alist_add(lst, 44, ~"ho");
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(alist_get(lst, 22) == ~"hi");
|
|
|
|
fail_unless!(alist_get(lst, 44) == ~"ho");
|
2012-03-07 17:13:31 -06:00
|
|
|
}
|