Sign in
rust
/
rust
/
f60b6499d84ccf8bf0c325bf7ff3f736e134b730
/
.
/
tests
/
ui
/
type-alias-impl-trait
/
destructuring.rs
blob: 5122522dca6573764ff0d0af9894afb42362c995 [
file
]
#![
feature
(
type_alias_impl_trait
)]
//@ check-pass
// issue: https://github.com/rust-lang/rust/issues/104551
fn
main
()
{
type
T
=
impl
Sized
;
let
(
_a
,
_b
):
T
=
(
1u32
,
2u32
);
}