1 // Copyright 2023 The Fuchsia Authors
2 //
3 // Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0
4 // <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
5 // license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
6 // This file may not be copied, modified, or distributed except according to
7 // those terms.
8 
9 include!("../../zerocopy-derive/tests/util.rs");
10 
11 extern crate zerocopy;
12 
13 use zerocopy::transmute_mut;
14 
main()15 fn main() {}
16 
17 const ARRAY_OF_U8S: [u8; 2] = [0u8; 2];
18 
19 // `transmute_mut!` cannot, generally speaking, be used in const contexts.
20 const CONST_CONTEXT: &mut [u8; 2] = transmute_mut!(&mut ARRAY_OF_U8S);
21