aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1785.scala
blob: 0b1fafb27c8d93bb2aabbc8d0225c96366fbc3cd (plain) (blame)
1
2
3
4
5
6
7
class t1785 {
  def apply[T](x: Int) = 1
}

object test {
  (new t1785)[Int](1)
}