summaryrefslogtreecommitdiff
path: root/test/files/neg/t9045.scala
blob: e6710ab32479a9d4164279aea52df57899a83782 (plain) (blame)
1
2
3
4
5
6
7
8
case class AffineImageShape(axes: Seq[Int]) {
  def this(axes: Array[Int]) = this(axes)
}
class X(i: Int) {
  def this(d: Double) = this(d.toLong)
  def this(n: Long) = this(n.toInt)
}