Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
rust
/
cxx
/
ddfb7cdb39f59558115e2009d09c01d897b22f5d
/
.
/
tests
/
ui
/
derive_noncopy.rs
blob: ae705fd00b6caa81b92ce9970bccad07556d2241 [
file
] [
log
] [
blame
]
David Tolnay
4d73379
2020-11-27 12:24:22 -0800
[
diff
] [
blame
]
1
#[
cxx
::
bridge
]
2
mod
ffi
{
3
#[
derive
(
Copy
)]
4
struct
TryCopy
{
5
other
:
Other
,
6
}
7
8
struct
Other
{
9
x
:
usize
,
10
}
11
}
12
13
fn
main
()
{}