Reviewing implicit parameters (and conversions) precedence rules at http://docs.scala-lang.org/tutorials/FAQ/finding-implicits.html I found the following priority list:
- First look in current scope
- Implicits defined in current scope
- Explicit imports
- wildcard imports
Same scope in other files- ...
I wonder why Same scope in other files is crossed out. Is it a pending to implement feature? Has it been removed for some reason? My so far experience shows that the feature isn't available but I'd like to know why is it listed.