7 lines
112 B
Rust
7 lines
112 B
Rust
|
trait A { }
|
||
|
|
||
|
impl int: A {
|
||
|
fn foo() { } //~ ERROR method `foo` is not a member of trait `A`
|
||
|
}
|
||
|
|
||
|
fn main() { }
|