]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0128.rs
Rollup merge of #97915 - tbu-:pr_os_string_fmt_write, r=joshtriplett
[rust.git] / src / test / ui / error-codes / E0128.rs
1 struct Foo<T=U, U=()> { //~ ERROR E0128
2     field1: T,
3     field2: U,
4 }
5
6 fn main() {
7 }