summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/method-help-unsatisfied-bound.rs
blob: 6303c6e6a5db11404e1850fbf09dc214c61cfcc4 (plain)
1
2
3
4
5
6
7
struct Foo;

fn main() {
    let a: Result<(), Foo> = Ok(());
    a.unwrap();
    //~^ ERROR `Foo` doesn't implement `Debug`
}