Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
binding
/
fat-arrow-match.rs
blob: d9a75c62096dc351f6f0f7ab155e5e246dd49aff [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
#![
allow
(
non_camel_case_types
)]
enum
color
{
red
,
green
,
blue
}
pub
fn
main
()
{
println
!(
"{}"
,
match
color
::
red
{
color
::
red
=>
{
1
}
color
::
green
=>
{
2
}
color
::
blue
=>
{
3
}
});
}