about summary refs log tree commit diff
path: root/tests/ui/return/early-return-with-unreachable-code-24353.rs
blob: 13add4652d9946b0564bb5b7b9dc82094d46a19e (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass
#![allow(unreachable_code)]
fn main() {
    return ();

    let x = ();
    x
}

// https://github.com/rust-lang/rust/issues/24353