summaryrefslogblamecommitdiff
path: root/test/files/run/genericValueClass.scala
blob: 68162bb685e9927206470944b1cffd1b610f8cbc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                 
final class ArrowAssoc[A](val __leftOfArrow: A) extends AnyVal {
  @inline def -> [B](y: B): Tuple2[A, B] = Tuple2(__leftOfArrow, y)
  def [B](y: B): Tuple2[A, B] = ->(y)
}

object Test extends App {
  {
  @inline implicit def any2ArrowAssoc[A](x: A): ArrowAssoc[A] = new ArrowAssoc(x)
  val x = 1 -> "abc"
  println(x)
  }

  {
    val y = 2 -> "def"
    println(y)
  }
}