We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
scala> object A { def f = 1 } // defined object A scala> import A._; def f = 2 def f: Int scala> f val res0: Int = 1 // should be 2