]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0132.rs
Suggest `if let`/`let_else` for refutable pat in `let`
[rust.git] / src / test / ui / error-codes / E0132.rs
1 #![feature(start)]
2
3 #[start]
4 fn f< T >() {} //~ ERROR E0132
5
6 fn main() {
7 }