Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
5d8abc362fa8931e99b5613a255dbda9eb4c6373
/
.
/
crates
/
pin-project-lite
/
tests
/
expand
/
naming
/
struct-ref.rs
blob: ce0d946270d1d70487118f580119c78cb8198e23 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: Apache-2.0 OR MIT
use
pin_project_lite
::
pin_project
;
pin_project
!
{
#[
project_ref
=
StructProjRef
]
struct
Struct
<
T
,
U
>
{
#[
pin
]
pinned
:
T
,
unpinned
:
U
,
}
}
fn
main
()
{}