blob: ce06f8f7817ffe99dc5bb6574f7ef9120ce8f9ff [file] [log] [blame]
//@ check-pass
fn main() {}
trait T {}
impl T for () {}
fn should_ret_unit() -> impl T {
panic!()
}