We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec9890e commit dc0417aCopy full SHA for dc0417a
content/unroll-default-arguments.md
@@ -428,7 +428,8 @@ Notes:
428
to addition of new fields due to
429
[Option-less Pattern Matching](https://docs.scala-lang.org/scala3/reference/changed-features/pattern-matching.html).
430
Thus, only direct calls to `.unapply` on an unrolled `case class` in Scala 2.x (shown below)
431
- will cause a crash if additional fields were added.
+ will cause a crash if additional fields were added, or calls to `.tupled` or `.curried` on the
432
+ `case class` companion `object.
433
434
```scala
435
def foo(t: (String, Int)) = println(t)
0 commit comments