mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
218 B
Rust
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() {}
|