• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2022 The Fuchsia Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #[macro_use]
6 extern crate zerocopy;
7 
main()8 fn main() {}
9 
10 // Should fail because `UnsafeCell<u32>: !FromBytes`.
11 const NOT_FROM_BYTES: core::cell::UnsafeCell<u32> =
12     include_value!("../../testdata/include_value/data");
13