Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
issue-90213-expected-boxfuture-self-ice.rs
blob: f78d4e3554567994e878c9a9b03f8dab02de7217 [
file
] [
log
] [
blame
] [
edit
]
// 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
()
{}