rust/tests/ui/rfc-1937-termination-trait/issue-103052-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
371 B
Rust
Raw Normal View History

#![feature(return_position_impl_trait_in_trait)]
#![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() {}