rust/tests/ui/suggestions/issue-102354.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
126 B
Rust
Raw Normal View History

trait Trait {
fn func() {}
}
impl Trait for i32 {}
fn main() {
let x: i32 = 123;
x.func(); //~ERROR no method
}