fix: avoid unused variable warning

This commit is contained in:
Peter A. Bigot
2022-07-20 08:37:58 -07:00
parent d91ca79253
commit 697a0d754e
3 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ fn main() {
// 填空
let b = __;
let v = match b {
let _v = match b {
true => 1,
// 发散函数也可以用于 `match` 表达式,用于替代任何类型的值
false => {