rustc/tests/ui/unsized/maybe-bounds-where-cpass.rs
2023-08-02 10:33:26 +02:00

10 lines
130 B
Rust

// check-pass
struct S<T>(*const T) where T: ?Sized;
fn main() {
let u = vec![1, 2, 3];
let _s: S<[u8]> = S(&u[..]);
}