Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
enum-export-inheritance.rs
blob: 1fddddba331b34490f89e3fbb350b02fd57b13b8 [
file
] [
log
] [
blame
]
mod
a
{
pub
enum
Foo
{
Bar
,
Baz
,
Boo
}
}
fn
main
()
{
let
x
=
a
::
Bar
;
}