aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/sbt-test/source-dependencies/default-params/A.scala
blob: 50baa662f4eab9c9c6465057844ed69994352b65 (plain) (blame)
1
2
3
4
5
object A
{
	def x(f: String, g: Int): Int = g
	def x(f: Int, g: Int = 3): Int = g
}