aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/typedapply.scala
blob: b80281c9ff6794a3fffb9db0f2d299e55476f0ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
object typedapply {

  def foo[X, Y](x: X, y: Y) = (x, y)

  foo[Int](1, "abc")

  foo[Int, String, String](1, "abc")

  def bar(x: Int) = x

  bar[Int](1)

  def baz[X >: Y, Y <: String](x: X, y: Y) = (x, y)

  baz[Int, String](1, "abc")

}