]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/packed-struct-generic-transmute.rs
complete openbsd support for `std::env`
[rust.git] / src / test / compile-fail / packed-struct-generic-transmute.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // This assumes the packed and non-packed structs are different sizes.
12
13 // the error points to the start of the file, not the line with the
14 // transmute
15
16 // error-pattern: transmute called on types with different size
17
18 use std::mem;
19
20 #[repr(packed)]
21 struct Foo<T,S> {
22     bar: T,
23     baz: S
24 }
25
26 struct Oof<T, S> {
27     rab: T,
28     zab: S
29 }
30
31 fn main() {
32     let foo = Foo { bar: [1u8, 2, 3, 4, 5], baz: 10i32 };
33     unsafe {
34         let oof: Oof<[u8; 5], i32> = mem::transmute(foo);
35         println!("{:?} {:?}", &oof.rab[], oof.zab);
36     }
37 }