DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / traits / negative-bounds / supertrait.rs
12345678
//@ check-pass #![feature(negative_bounds)] trait A: !B {} trait B: !A {} fn main() {}