rust/tests/ui/impl-trait/in-trait/doesnt-satisfy.rs
2023-10-13 21:01:36 +00:00

13 lines
201 B
Rust

#![allow(incomplete_features)]
trait Foo {
fn bar() -> impl std::fmt::Display;
}
impl Foo for () {
fn bar() -> () {}
//~^ ERROR `()` doesn't implement `std::fmt::Display`
}
fn main() {}