about summary refs log tree commit diff
path: root/tests/ui/for-loop-while/for-destruct.rs
blob: e0b082ad04848e36e0f0585cb58e444eec8307b4 (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);
    }
}