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

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

59 lines
1.3 KiB
Rust
Raw Normal View History

2019-06-28 13:46:45 -05:00
#![feature(arbitrary_self_types)]
#![allow(non_snake_case)]
2019-07-15 11:09:25 -05:00
use std::marker::PhantomData;
use std::ops::Deref;
2019-06-28 13:46:45 -05:00
use std::pin::Pin;
struct Struct { }
2019-07-15 11:09:25 -05:00
struct Wrap<T, P>(T, PhantomData<P>);
impl<T, P> Deref for Wrap<T, P> {
type Target = T;
fn deref(&self) -> &T { &self.0 }
}
2019-06-28 13:46:45 -05:00
impl Struct {
// Test using `&self` sugar:
fn ref_self(&self, f: &u32) -> &u32 {
f
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2019-06-28 13:46:45 -05:00
}
// Test using `&Self` explicitly:
fn ref_Self(self: &Self, f: &u32) -> &u32 {
f
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2019-06-28 13:46:45 -05:00
}
fn box_ref_Self(self: Box<&Self>, f: &u32) -> &u32 {
f
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2019-06-28 13:46:45 -05:00
}
fn pin_ref_Self(self: Pin<&Self>, f: &u32) -> &u32 {
f
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2019-06-28 13:46:45 -05:00
}
fn box_box_ref_Self(self: Box<Box<&Self>>, f: &u32) -> &u32 {
f
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2019-06-28 13:46:45 -05:00
}
fn box_pin_ref_Self(self: Box<Pin<&Self>>, f: &u32) -> &u32 {
f
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2019-06-28 13:46:45 -05:00
}
2019-07-15 11:09:25 -05:00
fn wrap_ref_Self_Self(self: Wrap<&Self, Self>, f: &u8) -> &u8 {
f
2022-04-01 12:13:25 -05:00
//~^ ERROR lifetime may not live long enough
2019-07-15 11:09:25 -05:00
}
2019-06-28 13:46:45 -05:00
}
fn main() { }