File tree 3 files changed +16
-16
lines changed
3 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1
- -- [E006] Not Found Error: tests/neg/i15784.scala:2:26 -----------------------------------------------------------------
2
- 2 | case List(_, Rest @ `a`) => Rest // error
3
- | ^^^
4
- | Not found: a
1
+ -- [E006] Not Found Error: tests/neg/i15784.scala:2:22 -----------------------------------------------------------------
2
+ 2 | case List(_, Rest @ `a`) => Rest // error
3
+ | ^^^
4
+ | Not found: a
5
5
|
6
6
| longer explanation available when compiling with `-explain`
7
- -- [E006] Not Found Error: tests/neg/i15784.scala:3:26 -----------------------------------------------------------------
8
- 3 | case List(_, Rest @ A) => Rest // error
9
- | ^
10
- | Not found: A
7
+ -- [E006] Not Found Error: tests/neg/i15784.scala:3:22 -----------------------------------------------------------------
8
+ 3 | case List(_, Rest @ A) => Rest // error
9
+ | ^
10
+ | Not found: A
11
11
|
12
12
| longer explanation available when compiling with `-explain`
Original file line number Diff line number Diff line change 1
1
def i15784 = List (42 ) match
2
- case List (_, Rest @ `a`) => Rest // error
3
- case List (_, Rest @ A ) => Rest // error
4
- case _ => ???
2
+ case List (_, Rest @ `a`) => Rest // error
3
+ case List (_, Rest @ A ) => Rest // error
4
+ case _ => ???
Original file line number Diff line number Diff line change 1
1
def i15784 = List (42 ) match
2
- case List (_, rest @ _* ) => rest
3
- case List (_, Rest @ _* ) => Rest
4
- case List (_, `Rest` @ _* ) => Rest
5
- case _ => ???
2
+ case List (_, rest @ _* ) => rest
3
+ case List (_, Rest @ _* ) => Rest
4
+ case List (_, `Rest` @ _* ) => Rest
5
+ case _ => ???
6
6
7
7
def i15784_auxiliary = 42 match
8
- case `type` : Int => `type`
8
+ case `type` : Int => `type`
You can’t perform that action at this time.
0 commit comments