mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
212 B
Rust
14 lines
212 B
Rust
#![feature(coerce_unsized)]
|
|
use std::ops::CoerceUnsized;
|
|
|
|
struct Foo<T: ?Sized, U: ?Sized> {
|
|
a: i32,
|
|
b: T,
|
|
c: U,
|
|
}
|
|
|
|
impl<T, U> CoerceUnsized<Foo<U, T>> for Foo<T, U> {}
|
|
//~^ ERROR E0375
|
|
|
|
fn main() {}
|