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