mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-19 16:54:35 +00:00
10 lines
167 B
Rust
10 lines
167 B
Rust
trait Trait1 {}
|
|
trait Trait2 {}
|
|
|
|
#[cfg(not_enabled)]
|
|
impl Trait1 for .. {}
|
|
|
|
impl Trait2 for .. {} //~ ERROR `impl Trait for .. {}` is an obsolete syntax
|
|
|
|
fn main() {}
|