blob: f881feb0060abc2cba308a8bd4a25460efd24aef [file] [log] [blame] [edit]
trait Trait {
fn func() {}
}
impl Trait for i32 {}
fn main() {
let x: i32 = 123;
x.func(); //~ERROR no method
}