rustc/tests/ui/error-codes/E0375.rs
2024-06-21 09:39:33 +02:00

14 lines
228 B
Rust

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