about summary refs log tree commit diff
path: root/tests/ui/auto-traits/ungated-impl.rs
blob: d46b4b01af9c7560070b594c603f6515b081990b (plain)
1
2
3
4
5
6
7
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() {}