summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-22471.rs
blob: 69879ab7fdf1bad833f0850ce65cd8232b5da22f (plain)
1
2
3
4
5
6
7
// check-pass
#![allow(dead_code)]
#![allow(type_alias_bounds)]

type Foo<T> where T: Copy = Box<T>;

fn main(){}