]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-22471.rs
Rollup merge of #104059 - Rejyr:rustc_middle-lint-typo, r=petrochenkov
[rust.git] / src / test / ui / issues / issue-22471.rs
1 // check-pass
2 #![allow(dead_code)]
3 #![allow(type_alias_bounds)]
4
5 type Foo<T> where T: Copy = Box<T>;
6
7 fn main(){}