]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/rec-auto.rs
Merge pull request #781 from robarnold/upstream-stable
[rust.git] / src / test / run-pass / rec-auto.rs
1
2
3
4 // -*- rust -*-
5
6 // Issue #50.
7 fn main() { let x = {foo: "hello", bar: "world"}; log x.foo; log x.bar; }