android13/external/rust/cxx/tests/ui/rust_pinned.rs

15 lines
172 B
Rust

use std::marker::PhantomPinned;
#[cxx::bridge]
mod ffi {
extern "Rust" {
type Pinned;
}
}
pub struct Pinned {
_pinned: PhantomPinned,
}
fn main() {}