Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
type-alias
/
issue-37515.rs
blob: 28875c97f2dfe1a5c95fd95c415c82ffeaff57c2 [
file
]
//@ check-pass
#![
warn
(
unused
)]
type
Z
=
dyn
for
<
'
x
>
Send
;
//~^ WARN type alias `Z` is never used
fn
main
()
{}