aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/sbt-test/source-dependencies/trait-super/Main.scala
blob: 37d821d9d4d15e4b912d44f6fec15397ec6af272 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class X extends E with C with B

object Main {

	def main(args: Array[String]): Unit = {
		val x = new X
		val expected = args(0).toInt
		assert(x.x == expected, "Expected " + expected + ", got " + x.x)
	}
}