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