rust/src/test/run-pass/unique-autoderef-field.rs

6 lines
73 B
Rust
Raw Normal View History

fn main() {
let i = ~{
j: 100
};
assert i.j == 100;
}