rust/tests/ui/error-codes/E0374.rs
2023-01-11 09:32:08 +00:00

12 lines
204 B
Rust

#![feature(coerce_unsized)]
use std::ops::CoerceUnsized;
struct Foo<T: ?Sized> {
a: i32,
}
impl<T, U> CoerceUnsized<Foo<U>> for Foo<T> //~ ERROR E0374
where T: CoerceUnsized<U> {}
fn main() {}