mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 19:32:01 +00:00
10 lines
161 B
Rust
10 lines
161 B
Rust
// Point at correct span for self type
|
|
|
|
struct SomeType {}
|
|
|
|
trait Foo {
|
|
fn handler(self: &SomeType); //~ ERROR invalid `self` parameter type
|
|
}
|
|
|
|
fn main() {}
|