aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2667.scala
blob: 600c1eaf0d9209ac9962c57f9a432977e5f7541b (plain) (blame)
1
2
3
4
5
6
7
// ExtensionMethods info transformer fails here for AnyVal$
object A {
  def foo(x: Int, y: Int*): Int = 45
  def foo[T](x: T*): Int = 55

  val x: Unit = foo(23, 23f)
}