]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-22471.rs
Auto merge of #57035 - Zoxc:query-pref9, r=michaelwoerister
[rust.git] / src / test / ui / issues / issue-22471.rs
1 // compile-pass
2 #![allow(dead_code)]
3 #![allow(type_alias_bounds)]
4
5 type Foo<T> where T: Copy = Box<T>;
6
7 fn main(){}