Sha256: 0618b60a450c99b5953b302e26c68df1abe7632af3d9baf3639eb60091e4ff4e
Contents?: true
Size: 319 Bytes
Versions: 8
Compression:
Stored size: 319 Bytes
Contents
// SPDX-License-Identifier: Apache-2.0 OR MIT use pin_project_lite::pin_project; pin_project! { pub struct S { #[pin] field: u8, } impl PinnedDrop for S { fn drop(this: Pin<&mut Self>) { __drop_inner(this); } } } fn main() { let _x = S { field: 0 }; }
Version data entries
8 entries across 8 versions & 1 rubygems