2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2016-07-09 00:24:46 +00:00
|
|
|
// compile-flags:-g
|
2019-08-17 05:08:01 +00:00
|
|
|
// ignore-asmjs wasm2js does not support source maps yet
|
2016-07-09 00:24:46 +00: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 13:10:16 +00:00
|
|
|
// closure in the guard being codegened twice due to how match expressions are
|
2016-07-09 00:24:46 +00:00
|
|
|
// handled.
|
|
|
|
//
|
|
|
|
// See https://github.com/rust-lang/rust/issues/34569 for details.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
match 0 {
|
|
|
|
e if (|| { e == 0 })() => {},
|
|
|
|
1 => {},
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|