aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/pos_valueclasses/t6260.scala
blob: 675c3c16afb5983d8cb6e2be216bd792dab3e4a4 (plain) (tree)
1
2

             
















                                                   
package t6260

class Box[X](val x: X) extends AnyVal {
  def map[Y](f: X => Y): Box[Y] =
    ((bx: Box[X]) => new Box(f(bx.x)))(this)
}

object Test {
  def map2[X, Y](self: Box[X], f: X => Y): Box[Y] =
    ((bx: Box[X]) => new Box(f(bx.x)))(self)

  def main(args: Array[String]): Unit = {
    val f = (x: Int) => x + 1
    val g = (x: String) => x + x

    map2(new Box(42), f)
    new Box("abc") map g
  }
}