blob: ffc6fa1f290f3e06210bfd90fe4eb63bc0b70972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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),));
}
|