summaryrefslogtreecommitdiff
path: root/test/pending/pos/t0644.scala
blob: 5ad12c363223bd8f819a6a311b34f3712b604ec0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class A {
  def appply(): Int = 0
  def update(n: Int) {}
}

class B extends A {
  this()
  this()=1
  super()
  super()=1
}