aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/rec-auto.rs
blob: 01390acd551d7f943c3c5bd69a57636075f23eb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
// -*- rust -*-

// Issue #50.

fn main() {
  auto x = rec(foo = "hello", bar = "world");
  log x.foo;
  log x.bar;
}