]> git.proxmox.com Git - rustc.git/blame - src/test/ui/mismatched_types/method-help-unsatisfied-bound.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / mismatched_types / method-help-unsatisfied-bound.rs
CommitLineData
62682a34 1struct Foo;
970d7e83
LB
2
3fn main() {
62682a34
SL
4 let a: Result<(), Foo> = Ok(());
5 a.unwrap();
a2a8927a 6 //~^ ERROR `Foo` doesn't implement `Debug`
970d7e83 7}