rust/tests/ui/impl-trait/in-trait/doesnt-satisfy.rs

11 lines
169 B
Rust
Raw Normal View History

2022-08-30 23:46:54 -05:00
trait Foo {
fn bar() -> impl std::fmt::Display;
}
impl Foo for () {
fn bar() -> () {}
//~^ ERROR `()` doesn't implement `std::fmt::Display`
}
fn main() {}