]> git.lizzy.rs Git - rust.git/blob - src/test/ui/maybe-bounds-where-cpass.rs
Auto merge of #60065 - QuietMisdreavus:async-move-doctests, r=ollie27
[rust.git] / src / test / ui / maybe-bounds-where-cpass.rs
1 // compile-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 }