Sign in
rust
/
rustfmt
/
HEAD
/
.
/
tests
/
target
/
issue_4868.rs
blob: 763a82c3231f14db2a1f5d0418342e1ef7f157b8 [
file
] [
log
] [
blame
]
enum
NonAscii
{
Abcd
,
É
fgh
,
}
use
NonAscii
::*;
fn
f
(
x
:
NonAscii
)
->
bool
{
match
x
{
É
fgh
=>
true
,
_
=>
false
,
}
}
fn
main
()
{
dbg
!(
f
(
Abcd
));
}