]> git.lizzy.rs Git - rust.git/blob - src/test/ui/maybe-bounds-where-cpass.rs
Rollup merge of #61207 - taiki-e:arbitrary_self_types-lifetime-elision-2, r=Centril
[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 }