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