mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 01:18:43 +00:00
9 lines
158 B
Rust
9 lines
158 B
Rust
trait Trait {
|
|
fn foo();
|
|
}
|
|
|
|
fn main() {
|
|
<<i32 as Copy>::foobar as Trait>::foo();
|
|
//~^ ERROR cannot find associated type `foobar` in trait `Copy`
|
|
}
|