summaryrefslogblamecommitdiff
path: root/test/files/pos/t8376/Test.scala
blob: ba078a35324b243e4c31a99352040e3a7e7182f8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                         
class Test {
  BindingsX.select("", "") // okay in 2.10, fails in 2.11

  BindingsY.select1("", "") // okay in both
}

object BindingsY {
  def select1(root: String, steps: String*) = ()  
  def select1(root: Any, steps: String*) = ()
}