summaryrefslogtreecommitdiffstats
path: root/src/test/ui/for-loop-while/for-destruct.rs
blob: 7ca8d4ded25b73e9262597a05658c5fa544e5590 (plain)
1
2
3
4
5
6
7
8
9
// run-pass

struct Pair { x: isize, y: isize }

pub fn main() {
    for elt in &(vec![Pair {x: 10, y: 20}, Pair {x: 30, y: 0}]) {
        assert_eq!(elt.x + elt.y, 30);
    }
}