]> git.lizzy.rs Git - rust.git/blob - tests/ui/unsized/maybe-bounds-where-cpass.rs
Rollup merge of #106244 - atouchet:readme3, r=workingjubilee
[rust.git] / tests / 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 }