rust/tests/ui/self/elision/struct.rs

32 lines
484 B
Rust

//@ check-pass
#![allow(non_snake_case)]
use std::rc::Rc;
struct Struct { }
impl Struct {
fn ref_Struct(self: Struct, f: &u32) -> &u32 {
f
}
fn box_Struct(self: Box<Struct>, f: &u32) -> &u32 {
f
}
fn rc_Struct(self: Rc<Struct>, f: &u32) -> &u32 {
f
}
fn box_box_Struct(self: Box<Box<Struct>>, f: &u32) -> &u32 {
f
}
fn box_rc_Struct(self: Box<Rc<Struct>>, f: &u32) -> &u32 {
f
}
}
fn main() { }