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 6f7a05b commit 1305c78Copy full SHA for 1305c78
library/src-bootstrapped/scala/internal/quoted/Matcher.scala
@@ -369,8 +369,7 @@ object Matcher {
369
def (self: Matching) asOptionOfTuple: Option[Tuple] = self
370
371
/** Concatenates the contents of two sucessful matchings or return a `notMatched` */
372
- // FIXME inline to avoid allocation of by name closure (see #6395)
373
- /*inline*/ def (self: Matching) && (that: => Matching): Matching = self match {
+ def (self: Matching) && (that: => Matching): Matching = self match {
374
case Some(x) =>
375
that match {
376
case Some(y) => Some(x ++ y)
0 commit comments