summaryrefslogtreecommitdiff
path: root/test/files/presentation/t7548/src/Foo.scala
blob: cc997f6e5f0a5856796d38bb35d0acdc2f74c822 (plain) (blame)
1
2
3
4
5
6
7
object Foo {
  def foo(x: Int) = {}
  def foo(x: String) = {}
  def foo(x: Int, y: String) = {}
  
  foo(2)
}