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