summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/issue_67019.rs
blob: 08c7d4805d61522946aaf58ca4a7cb806cd1f20e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ignore-wasm32 compiled with panic=abort by default
// unit-test: ConstProp
// compile-flags: -Z mir-opt-level=3

// This used to ICE in const-prop

fn test(this: ((u8, u8),)) {
    assert!((this.0).0 == 1);
}

// EMIT_MIR issue_67019.main.ConstProp.diff
fn main() {
    test(((1, 2),));
}