mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
231 B
Rust
17 lines
231 B
Rust
// run-pass
|
|
// Regression test for #36856.
|
|
|
|
// compile-flags:-g
|
|
// ignore-asmjs wasm2js does not support source maps yet
|
|
|
|
fn g() -> bool {
|
|
false
|
|
}
|
|
|
|
pub fn main() {
|
|
let a = !g();
|
|
if a != !g() {
|
|
panic!();
|
|
}
|
|
}
|