Previously, only Self, &Self, &mut Self, Arc<Self>, Rc<Self>, and Box<Self> were available as stable method receivers. This commit stabilizes nested uses of all the above types. However, nested receivers remain non-object-safe.
32 lines
529 B
Rust
32 lines
529 B
Rust
// check-pass
|
|
// edition:2018
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
use std::rc::Rc;
|
|
|
|
struct Struct { }
|
|
|
|
impl Struct {
|
|
async fn ref_Struct(self: Struct, f: &u32) -> &u32 {
|
|
f
|
|
}
|
|
|
|
async fn box_Struct(self: Box<Struct>, f: &u32) -> &u32 {
|
|
f
|
|
}
|
|
|
|
async fn rc_Struct(self: Rc<Struct>, f: &u32) -> &u32 {
|
|
f
|
|
}
|
|
|
|
async fn box_box_Struct(self: Box<Box<Struct>>, f: &u32) -> &u32 {
|
|
f
|
|
}
|
|
|
|
async fn box_rc_Struct(self: Box<Rc<Struct>>, f: &u32) -> &u32 {
|
|
f
|
|
}
|
|
}
|
|
|
|
fn main() { }
|