blob: ccd65ff409138eca56466a337e0d0db9ec85912a [file] [log] [blame]
// run-rustfix
use std::pin::Pin;
struct S;
impl S {
fn x(self: Pin<&mut Self>) {
}
}
fn main() {
Pin::new(&mut S).x(); //~ ERROR no method named `x` found
}