8 lines
151 B
Rust
8 lines
151 B
Rust
// 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(){}
|