DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg2-3 / 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 }