aboutsummaryrefslogtreecommitdiff
path: root/tests/patmat/t9351.check
blob: 03b94c2c001b2f829726caf4444c3f99e5a0d8be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
./tests/patmat/t9351.scala:8: warning: match may not be exhaustive.
It would fail on the following input: _: A
    a match {
      ^
./tests/patmat/t9351.scala:17: warning: match may not be exhaustive.
It would fail on the following input: (_, _), (_, None), (_, Some(_))
    (a, o) match {
           ^
./tests/patmat/t9351.scala:28: warning: match may not be exhaustive.
It would fail on the following input: (_, _)
    (a, b) match {
           ^
three warnings found