blob: d4bc05f7cb42125206551beb210e3cb90deb72a6 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
struct S<T>(*const T) where T: ?Sized;
fn main() {
let u = vec![1, 2, 3];
let _s: S<[u8]> = S(&u[..]);
}