2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2016-07-08 20:24:46 -04:00
|
|
|
// compile-flags:-g
|
2019-08-16 22:08:01 -07:00
|
|
|
// ignore-asmjs wasm2js does not support source maps yet
|
2016-07-08 20:24:46 -04:00
|
|
|
|
|
|
|
// In this test we just want to make sure that the code below does not lead to
|
|
|
|
// a debuginfo verification assertion during compilation. This was caused by the
|
2018-05-08 16:10:16 +03:00
|
|
|
// closure in the guard being codegened twice due to how match expressions are
|
2016-07-08 20:24:46 -04:00
|
|
|
// handled.
|
|
|
|
//
|
|
|
|
// See https://github.com/rust-lang/rust/issues/34569 for details.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match 0 {
|
|
|
|
e if (|| { e == 0 })() => {},
|
|
|
|
1 => {},
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|