about summary refs log tree commit diff
path: root/tests/ui/traits/negative-impls/feature-gate-negative_impls.rs
blob: 8d3f6ff6d78c70483426c31a3c1e0dd84f899969 (plain)
1
2
3
trait MyTrait {}
impl !MyTrait for u32 {} //~ ERROR negative trait bounds are not fully implemented
fn main() {}