blob: 0ac60918b67e53498e73f3453717d34adfe25d00 [file] [log] [blame]
trait Foo {
fn bar() -> impl std::fmt::Display;
}
impl Foo for () {
fn bar() -> () {}
//~^ ERROR `()` doesn't implement `std::fmt::Display`
}
fn main() {}