rust/src/test/run-pass/cci_nested_exe.rs
Graydon Hoare 6f5853f5a1 Libc/os/run/rand/io reorganization. Close #1373. Close #1638.
- Move io, run and rand to core.
 - Remove incorrect ctypes module (use libc).
 - Remove os-specific modules for os and fs.
 - Split fs between core::path and core::os.
2012-03-12 20:08:29 -07:00

20 lines
490 B
Rust

// xfail-fast - check-fast doesn't understand aux-build
// aux-build:cci_nested_lib.rs
use cci_nested_lib;
import cci_nested_lib::*;
fn main() {
let lst = new_int_alist();
alist_add(lst, 22, "hi");
alist_add(lst, 44, "ho");
assert alist_get(lst, 22) == "hi";
assert alist_get(lst, 44) == "ho";
let lst = new_int_alist_2();
alist_add(lst, 22, "hi");
alist_add(lst, 44, "ho");
assert alist_get(lst, 22) == "hi";
assert alist_get(lst, 44) == "ho";
}