blob: ef55f44dd6be1b07a8321e41b9578ca2d6e30588 [file] [log] [blame]
#![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() {}