aboutsummaryrefslogtreecommitdiff
path: root/tests/ui-msrv/include_value_not_from_bytes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui-msrv/include_value_not_from_bytes.rs')
-rw-r--r--tests/ui-msrv/include_value_not_from_bytes.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui-msrv/include_value_not_from_bytes.rs b/tests/ui-msrv/include_value_not_from_bytes.rs
new file mode 100644
index 0000000..45b6138
--- /dev/null
+++ b/tests/ui-msrv/include_value_not_from_bytes.rs
@@ -0,0 +1,12 @@
+// Copyright 2022 The Fuchsia Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#[macro_use]
+extern crate zerocopy;
+
+fn main() {}
+
+// Should fail because `UnsafeCell<u32>: !FromBytes`.
+const NOT_FROM_BYTES: core::cell::UnsafeCell<u32> =
+ include_value!("../../testdata/include_value/data");