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