Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
traits
/
negative-impls
/
no-items.rs
blob: 5fc6be9b300079fb9737d0d0518677a00b5fe36e [
file
]
#![
feature
(
negative_impls
)]
trait
MyTrait
{
type
Foo
;
}
impl
!
MyTrait
for
u32
{
type
Foo
=
i32
;
//~ ERROR negative impls cannot have any items
}
fn
main
()
{}