aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/typedapply.scala
blob: c059418ac1deffbd1db76ad533fc415941b7b7ae (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")
  
}