Sign in
android
/
platform
/
external
/
rust
/
cxx
/
16bcd38c
/
.
/
tests
/
ui
/
unpin_impl.rs
blob: e10cc72705192cd90b8eaf541beb5da5a39671ef [
file
] [
log
] [
blame
]
use
std
::
marker
::
Unpin
;
#[
cxx
::
bridge
]
mod
ffi
{
extern
"C++"
{
type
Opaque
;
}
}
impl
Unpin
for
ffi
::
Opaque
{}
fn
main
()
{}