]> git.lizzy.rs Git - rust.git/blob - src/test/ui/maybe-bounds-where-cpass.rs
Merge commit 'dbee13661efa269cb4cd57bb4c6b99a19732b484' into sync_cg_clif-2020-12-27
[rust.git] / src / test / ui / maybe-bounds-where-cpass.rs
1 // build-pass (FIXME(62277): could be 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 }