Files
rust/tests/ui/auto-traits/ungated-impl.rs
2025-03-07 17:20:57 +00:00

8 lines
186 B
Rust

auto trait MyTrait {}
//~^ ERROR auto traits are experimental and possibly buggy
impl<T> !MyTrait for *mut T {}
//~^ ERROR negative trait bounds are not fully implemented
fn main() {}