rust/src/test/ui/maybe-bounds-where-cpass.rs
2019-07-03 06:30:28 +09:00

10 lines
167 B
Rust

// 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[..]);
}