blob: 27acca5ec893488fa71a6c7833d91069f1615731 [file] [log] [blame]
David Tolnay2dd73ea2020-04-22 17:56:27 -07001#[cxx::bridge]
2mod ffi {
3 struct UniquePtr {
4 val: usize,
5 }
6
7 extern "C" {
8 type Box;
9 }
10
11 extern "Rust" {
12 type String;
13 }
14}
15
16fn main() {}