2019-12-05 01:40:24 -06:00
|
|
|
// compile-flags: -Z mir-opt-level=2
|
|
|
|
|
|
|
|
// This used to ICE in const-prop
|
|
|
|
|
|
|
|
fn test(this: ((u8, u8),)) {
|
|
|
|
assert!((this.0).0 == 1);
|
|
|
|
}
|
|
|
|
|
2020-04-04 12:15:01 -05:00
|
|
|
// EMIT_MIR rustc.main.ConstProp.diff
|
2019-12-05 01:40:24 -06:00
|
|
|
fn main() {
|
|
|
|
test(((1, 2),));
|
|
|
|
}
|