mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
130 B
Rust
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[..]);
|
|
}
|