summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/negative-impls/feature-gate-negative_impls.rs
blob: 683fd6db6f29d58a5e527310c42585097ff9ff50 (plain)
1
2
3
trait MyTrait {}
impl !MyTrait for u32 {} //~ ERROR negative trait bounds are not yet fully implemented
fn main() {}