mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 16:53:39 +00:00
9 lines
88 B
Rust
9 lines
88 B
Rust
trait Foo {}
|
|
|
|
impl Foo for i32 {
|
|
type Bar = bool; //~ ERROR E0437
|
|
}
|
|
|
|
fn main () {
|
|
}
|