mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
290 B
Rust
17 lines
290 B
Rust
trait Fallback {
|
|
fn foo(&self) {}
|
|
}
|
|
|
|
impl Fallback for i32 {}
|
|
|
|
impl Fallback for u64 {}
|
|
|
|
impl Fallback for usize {}
|
|
|
|
fn main() {
|
|
missing();
|
|
//~^ ERROR cannot find function `missing` in this scope
|
|
0.foo();
|
|
// But then we shouldn't report an inference ambiguity here...
|
|
}
|