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