Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-36856.rs
blob: afeba012fa0d63213e7d35afe87b678b2684a8dc [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Regression test for #36856.
//@ compile-flags:-g
fn
g
()
->
bool
{
false
}
pub
fn
main
()
{
let
a
=
!
g
();
if
a
!=
!
g
()
{
panic
!();
}
}