summaryrefslogtreecommitdiff
path: root/test/files/pos/t5210.scala
blob: e85037a90272bdbd59001dd6adf30e09520aabee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object WithOpTest {
  trait WithOp extends Cloneable {
    def f: this.type = this
    def g1: this.type = f
    def g2: this.type = {
      val t = f
      t
    }
  }
}