Skip to content

Commit 26a432d

Browse files
committed
workaround scala/bug#13035
1 parent 4ca6400 commit 26a432d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scalafix-tests/input/src/main/scala/test/removeUnused/RemoveUnusedPatternVars.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ rule = RemoveUnused
33
*/
44
package test.removeUnused
55

6-
case class AB(a: Int, b: String)
6+
case class AB(aa: Int, bb: String)
77

88
case class XY(x: Int, y: Int)
99
case class YZ(xy: XY, z: String)

scalafix-tests/output/src/main/scala-2/test/removeUnused/RemoveUnusedPatternVars.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package test.removeUnused
22

3-
case class AB(a: Int, b: String)
3+
case class AB(aa: Int, bb: String)
44

55
case class XY(x: Int, y: Int)
66
case class YZ(xy: XY, z: String)

scalafix-tests/output/src/main/scala-3/test/removeUnused/RemoveUnusedPatternVars.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package test.removeUnused
22

3-
case class AB(a: Int, b: String)
3+
case class AB(aa: Int, bb: String)
44

55
case class XY(x: Int, y: Int)
66
case class YZ(xy: XY, z: String)

0 commit comments

Comments
 (0)