Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
tuple
/
one-tuple.rs
blob: a9723029e5db53c08a3ce07788ad664ac1c938d1 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Why one-tuples? Because macros.
pub
fn
main
()
{
match
(
'c'
,)
{
(
x
,)
=>
{
assert_eq
!(
x
,
'c'
);
}
}
// test the 1-tuple type too
let
x
:
(
char
,)
=
(
'd'
,);
let
(
y
,)
=
x
;
assert_eq
!(
y
,
'd'
);
}