// Copyright 2023 The Fuchsia Authors // // Licensed under a BSD-style license , Apache License, Version 2.0 // , or the MIT // license , at your option. // This file may not be copied, modified, or distributed except according to // those terms. extern crate zerocopy; use zerocopy::{transmute_ref, AsBytes, FromBytes}; fn main() {} fn transmute_ref(t: &T) -> &U { // `transmute_ref!` requires the source and destination types to be // concrete. transmute_ref!(t) }