-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ケースクラスとパターンマッチングでDayOfWeek型のmatch式でSaturdayのケースが漏れている #998
Comments
網羅した例を掲載して警告は自分で抜いて確かめてねという場合と x match {
case Sunday => 1
case Monday => 2
case Tuesday => 3
case Wednesday => 4
case Thursday => 5
case Friday => 6
case Saturday => 7
} 意図的にSaturdayを抜いたから警告が出るのを確かめてねの x match {
case Sunday => 1
case Monday => 2
case Tuesday => 3
case Wednesday => 4
case Thursday => 5
case Friday => 6
// case Saturday => 7
} 上記2パターンのどちらかが良い気がします。 |
他のやつにも何度も貼ってるけど、たぶんこれのせいで不自然に見えてる気がするので、これを根本的にさっさと解決したい |
本来は警告が見えていたのですね。。 |
@youta32449999 これ、見た目の問題もありますが、文章自体が
となっていて、「漏れがあった場合」という記述がややこしいですね。
(ここで、現状警告が見えていないので、直に貼ってしまいたい) という感じでどうでしょうか。 |
マージされたので close。 |
sealed
によるmatch式網羅性の警告を表示させるためにSaturday
を意図的に外しているのでしょうか?The text was updated successfully, but these errors were encountered: