rust/tests/ui/lifetimes/could-not-resolve-issue-121503.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
281 B
Rust
Raw Normal View History

//@ edition:2018
#![feature(allocator_api)]
struct Struct;
impl Struct {
async fn box_ref_Struct(self: Box<Self, impl FnMut(&mut Self)>) -> &u32 {
2024-03-19 15:58:37 -05:00
//~^ ERROR Box<Struct, impl FnMut(&mut Self)>` cannot be used as the type of `self` without
&1
}
}
fn main() {}