Sign in
android
/
toolchain
/
cargo-vet
/
HEAD
/
.
/
android
/
vendor
/
bitflags-1.3.2
/
tests
/
compile-pass
/
impls
/
inherent_methods.rs
blob: 3052c460ec33ab49d68ffa68ed941703dd21f947 [
file
] [
log
] [
blame
]
use
bitflags
::
bitflags
;
bitflags
!
{
struct
Flags
:
u32
{
const
A
=
0b00000001
;
}
}
impl
Flags
{
pub
fn
new
()
->
Flags
{
Flags
::
A
}
}
fn
main
()
{}