summaryrefslogtreecommitdiff
path: root/test/files/neg/t4460c.scala
blob: 1ae258508e80fb841ae1ae6ac9ac88db55c48111 (plain) (blame)
1
2
3
4
5
6
7
class B(val x: Int) {
  self: A =>

  def this(a: String) = this()
}

class A()