aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/src/sbt-test/source-dependencies/named/B.scala
blob: 5699c4db8f3d10499f18740f01db1b8554e15103 (plain) (blame)
1
2
3
4
5
6
7
object B {
	def main(args: Array[String]): Unit =
	{
		val result = A.x(zz = 3, yy = 4)
		assert(result == args(0).toInt, result)
	}
}