mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
230 B
Rust
12 lines
230 B
Rust
// run-pass
|
|
use std::mem;
|
|
|
|
pub struct X([u8]);
|
|
|
|
fn _f(x: &X) -> usize { match *x { X(ref x) => { x.len() } } }
|
|
|
|
fn main() {
|
|
let b: &[u8] = &[11; 42];
|
|
let v: &X = unsafe { mem::transmute(b) };
|
|
assert_eq!(_f(v), 42);
|
|
}
|