Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
return
/
early-return-with-unreachable-code-24353.rs
blob: 13add4652d9946b0564bb5b7b9dc82094d46a19e [
file
]
//@ run-pass
#![
allow
(
unreachable_code
)]
fn
main
()
{
return
();
let
x
=
();
x
}
// https://github.com/rust-lang/rust/issues/24353