xref
: /
external
/
rust
/
cxx
/
tests
/
ui
/
enum_inconsistent.rs
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#[
cxx
::
bridge
]
2
mod
ffi
{
3
enum
Bad
{
4
A
=
1u16
,
5
B
=
2i64
,
6
}
7
}
8
main()
9
fn
main
() {}
10