blob: 6c79da1ddf89563cb2aa5d7472cd4a46d93ed20f [file]
//@ run-pass
// Regression test for https://github.com/rust-lang/rust/issues/36856
//@ compile-flags:-g
fn g() -> bool {
false
}
pub fn main() {
let a = !g();
if a != !g() {
panic!();
}
}