summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/doesnt-satisfy.rs
blob: 0ac60918b67e53498e73f3453717d34adfe25d00 (plain)
1
2
3
4
5
6
7
8
9
10
trait Foo {
    fn bar() -> impl std::fmt::Display;
}

impl Foo for () {
    fn bar() -> () {}
    //~^ ERROR `()` doesn't implement `std::fmt::Display`
}

fn main() {}