mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 11:41:02 +00:00
9 lines
90 B
Rust
9 lines
90 B
Rust
//@ check-pass
|
|
|
|
#![feature(negative_bounds)]
|
|
|
|
trait A: !B {}
|
|
trait B: !A {}
|
|
|
|
fn main() {}
|