]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0128.rs
Suggest `if let`/`let_else` for refutable pat in `let`
[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 }