]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/rec-auto.rs
Merge tag 'release-0.3.1' into incoming
[rust.git] / src / test / run-pass / rec-auto.rs
1
2
3
4 // -*- rust -*-
5
6 // Issue #50.
7 fn main() {
8     let x = {foo: ~"hello", bar: ~"world"};
9     log(debug, x.foo);
10     log(debug, x.bar);
11 }