Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
structs-enums
/
enum-export-inheritance.rs
blob: 5bb689260c2c44c7de5cc3dedc31b60ef1a6eef2 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
//@ pretty-expanded FIXME #23616
mod
a
{
pub
enum
Foo
{
Bar
,
Baz
,
Boo
}
}
pub
fn
main
()
{
let
_x
=
a
::
Foo
::
Bar
;
}