]> git.lizzy.rs Git - rust.git/blob - src/test/pretty/issue-25031.rs
Rollup merge of #93663 - sunfishcode:sunfishcode/as-raw-name, r=joshtriplett
[rust.git] / src / test / pretty / issue-25031.rs
1 //
2 // Testing that type items with where clauses output correctly.
3
4 // pp-exact
5
6 fn main() {
7     type Foo<T> where T: Copy = Box<T>;
8 }