2012-01-15 23:42:10 -06:00
|
|
|
use std;
|
|
|
|
import std::list;
|
|
|
|
|
2012-01-19 18:10:31 -06:00
|
|
|
enum foo {
|
2012-01-15 23:42:10 -06:00
|
|
|
a(uint);
|
|
|
|
b(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_log<T>(exp: str, v: T) {
|
|
|
|
assert exp == #fmt["%?", v];
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = list::from_vec([a(22u), b("hi")]);
|
|
|
|
let exp = "cons(a(22), @cons(b(\"hi\"), @nil))";
|
|
|
|
assert #fmt["%?", x] == exp;
|
|
|
|
check_log(exp, x);
|
|
|
|
}
|