Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
if-ret.rs
blob: e1e795d83bea2f586efbd2b41c1eed4bce2e151b [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
unused_parens
)]
// pretty-expanded FIXME #23616
fn
foo
()
{
if
(
return
)
{
}
}
pub
fn
main
()
{
foo
();
}