summary refs log tree commit diff
path: root/src/test/run-pass/rec-auto.rs
blob: 8b2274817f74c0e2cea80f1e20ed375c7c054a69 (plain)
1
2
3
4
5
6
7
8
9
10
11



// -*- rust -*-

// Issue #50.
fn main() {
    let x = {foo: "hello", bar: "world"};
    log(debug, x.foo);
    log(debug, x.bar);
}