Skip to content

Commit

Permalink
add test for issue #17997 affecting the global object initialization …
Browse files Browse the repository at this point in the history
…checker
  • Loading branch information
olhotak committed Jul 4, 2023
1 parent 5c66d7b commit 96ca0b6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tests/init-global/pos/i17997.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 =>

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 96ca0b6

Please sign in to comment.