summary refs log tree commit diff
path: root/src/test/ui/issues/issue-22471.rs
blob: befccc19bf8ef1919b0644c8c1d8e39457202457 (plain)
1
2
3
4
5
6
7
// build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]
#![allow(type_alias_bounds)]

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

fn main(){}