Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0328.rs
blob: ef55f44dd6be1b07a8321e41b9578ca2d6e30588 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
unsize
)]
use
std
::
marker
::
Unsize
;
pub
struct
MyType
;
impl
<
T
>
Unsize
<
T
>
for
MyType
{}
//~^ ERROR explicit impls for the `Unsize` trait are not permitted [E0328]
fn
main
()
{}