]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unsized/maybe-bounds-where-cpass.rs
Merge commit '35d9c6bf256968e1b40e0d554607928bdf9cebea' into sync_cg_clif-2022-02-23
[rust.git] / src / test / ui / unsized / maybe-bounds-where-cpass.rs
1 // check-pass
2
3 struct S<T>(*const T) where T: ?Sized;
4
5
6 fn main() {
7     let u = vec![1, 2, 3];
8     let _s: S<[u8]> = S(&u[..]);
9 }