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

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

36 lines
543 B
Rust
Raw Normal View History

// check-pass
2019-06-28 13:46:45 -05:00
#![allow(non_snake_case)]
use std::rc::Rc;
struct Struct { }
impl Struct {
fn take_self(self, f: &u32) -> &u32 {
f
}
fn take_Self(self: Self, f: &u32) -> &u32 {
f
}
fn take_Box_Self(self: Box<Self>, f: &u32) -> &u32 {
f
}
fn take_Box_Box_Self(self: Box<Box<Self>>, f: &u32) -> &u32 {
f
}
fn take_Rc_Self(self: Rc<Self>, f: &u32) -> &u32 {
f
}
fn take_Box_Rc_Self(self: Box<Rc<Self>>, f: &u32) -> &u32 {
f
}
}
fn main() { }