summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-tuple-struct.rs
blob: 0144afaaceb348bbe11ae5f48026e492ee14dee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass

struct Bar(isize, isize);

static X: Bar = Bar(1, 2);

pub fn main() {
    match X {
        Bar(x, y) => {
            assert_eq!(x, 1);
            assert_eq!(y, 2);
        }
    }
}