Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
traits
/
negative-impls
/
feature-gate-negative_impls.rs
blob: 8d3f6ff6d78c70483426c31a3c1e0dd84f899969 [
file
] [
log
] [
blame
]
trait
MyTrait
{}
impl
!
MyTrait
for
u32
{}
//~ ERROR negative trait bounds are not fully implemented
fn
main
()
{}