DEBSOURCES
Skip Quicknav
sources / rustc / 1.88.0%2Bdfsg1-1 / tests / ui / self / point-at-arbitrary-self-type-method.rs
123456789
struct A; impl A { fn foo(self: Box<Self>) {} } fn main() { A.foo(); //~ ERROR E0599 }