summary refs log tree commit diff
path: root/src/test/ui/issues/issue-22471.rs
blob: a22c7e6173e1745caf6802705b78aa7807e2ffb4 (plain)
1
2
3
4
5
6
7
// compile-pass
#![allow(dead_code)]
#![allow(type_alias_bounds)]

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

fn main(){}