blob: fd3c9b2dea8646f0c5c92bd5af7f4ba59ae32985 [file] [log] [blame]
//@ 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() { }