rust/tests/ui/self/point-at-arbitrary-self-typ...

10 lines
97 B
Rust

struct A;
impl A {
fn foo(self: Box<Self>) {}
}
fn main() {
A.foo(); //~ ERROR E0599
}