rust/tests/ui/suggestions/issue-90213-expected-boxfuture-self-ice.rs
2023-01-11 09:32:08 +00:00

14 lines
218 B
Rust

// Checks that we do not ICE when comparing `Self` to `Pin`
// edition:2021
struct S;
impl S {
fn foo(_: Box<Option<S>>) {}
fn bar() {
Self::foo(None) //~ ERROR mismatched types
}
}
fn main() {}