Skip to content

Commit

Permalink
Add test for modifying this to AndType
Browse files Browse the repository at this point in the history
  • Loading branch information
EnzeXing committed Jul 27, 2023
1 parent f5313ae commit cb73f0b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tests/init-global/pos/i17997-2.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
abstract class FunSuite:
def foo(): Unit = println("FunSuite")

foo()

trait MySelfType

trait MyTrait extends FunSuite { this: MySelfType =>
}

abstract class MyAbstractClass extends FunSuite { this: MySelfType & MyTrait =>

override def foo() = {
println("MyAbstractClass")
super.foo()
}
}

final class MyFinalClass extends MyAbstractClass with MyTrait with MySelfType:
val n: Int = 100

object Main:
(new MyFinalClass).foo()

0 comments on commit cb73f0b

Please sign in to comment.