mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 23:44:50 +00:00
11 lines
199 B
Rust
11 lines
199 B
Rust
trait A {}
|
|
|
|
impl A .. {}
|
|
//~^ ERROR missing `for` in a trait impl
|
|
//~| ERROR `impl Trait for .. {}` is an obsolete syntax
|
|
|
|
impl A usize {}
|
|
//~^ ERROR missing `for` in a trait impl
|
|
|
|
fn main() {}
|