11 lines
145 B
Rust
11 lines
145 B
Rust
|
|
||
|
trait foo {
|
||
|
static fn bar();
|
||
|
}
|
||
|
|
||
|
impl of foo for int {
|
||
|
fn bar() {} //~ ERROR self type does not match the trait method's
|
||
|
}
|
||
|
|
||
|
fn main() {}
|