#![feature(coerce_unsized)] use std::ops::CoerceUnsized; struct Foo { a: T, } impl CoerceUnsized for Foo {} //~ ERROR E0376 fn main() {}