Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
rust
/
cxx
/
d60c07b7629a373396c4cb15c57c4903402cee27
/
.
/
tests
/
ui
/
reserved_name.rs
blob: 27acca5ec893488fa71a6c7833d91069f1615731 [
file
] [
log
] [
blame
]
David Tolnay
2dd73ea
2020-04-22 17:56:27 -0700
[
diff
] [
blame
]
1
#[
cxx
::
bridge
]
2
mod
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
16
fn
main
()
{}