summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias/issue-37515.rs
blob: b3a870d505a2d9d887b285e6f24f4852093f5cc5 (plain)
1
2
3
4
5
6
7
8
// check-pass

#![warn(unused)]

type Z = dyn for<'x> Send;
//~^ WARN type alias `Z` is never used

fn main() {}