]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue_4954.rs
Rollup merge of #89876 - AlexApps99:const_ops, r=oli-obk
[rust.git] / src / tools / rustfmt / tests / source / issue_4954.rs
1 trait Foo {
2   type Arg<'a>;
3 }
4
5 struct Bar<T>(T) where for<'a> T: Foo<Arg<'a> = ()>;