• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2022 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 extern crate zerocopy;
10 
11 use zerocopy::transmute;
12 
main()13 fn main() {}
14 
15 // It is unclear whether we can or should support this transmutation, especially
16 // in a const context. This test ensures that even if such a transmutation
17 // becomes valid due to the requisite implementations of `FromBytes` being
18 // added, that we re-examine whether it should specifically be valid in a const
19 // context.
20 const POINTER_VALUE: usize = transmute!(&0usize as *const usize);
21