rust/tests/ui/rfcs/rfc-1937-termination-trait/issue-103052-2.rs
2023-10-13 21:01:36 +00:00

19 lines
335 B
Rust

#![allow(incomplete_features)]
mod child {
trait Main {
fn main() -> impl std::process::Termination;
}
struct Something;
impl Main for () {
fn main() -> Something {
//~^ ERROR the trait bound `Something: Termination` is not satisfied
Something
}
}
}
fn main() {}