]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/rec-auto.rs
Reformat source tree (minus a couple tests that are still grumpy).
[rust.git] / src / test / run-pass / rec-auto.rs
1
2
3
4 // -*- rust -*-
5
6 // Issue #50.
7 fn main() { auto x = rec(foo="hello", bar="world"); log x.foo; log x.bar; }