]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0376.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / error-codes / E0376.rs
CommitLineData
5bcae85e
SL
1#![feature(coerce_unsized)]
2use std::ops::CoerceUnsized;
3157f602 3
5bcae85e
SL
4struct Foo<T: ?Sized> {
5 a: T,
a7813a04
XL
6}
7
5bcae85e
SL
8impl<T, U> CoerceUnsized<U> for Foo<T> {} //~ ERROR E0376
9
10fn main() {}