blob: 83cea168465154d54b6b8ca6a582b444939c4e0b [file] [log] [blame]
struct Foo;
fn main() {
let a: Result<(), Foo> = Ok(());
a.unwrap();
//~^ ERROR no method named `unwrap` found for type `std::result::Result<(), Foo>`
}