-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limit depth by Symbols instead of TermRefs in suggestionRoots
- Loading branch information
Showing
3 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- [E008] Not Found Error: tests/neg/22145c.scala:2:35 ----------------------------------------------------------------- | ||
2 | def bar(base: Collection) = base.foo // error | ||
| ^^^^^^^^ | ||
| value foo is not a member of Collection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
trait Collection: | ||
def bar(base: Collection) = base.foo // error | ||
object a extends Collection: | ||
def foo: Int = 0 | ||
object b extends Collection: | ||
def foo: Int = 1 |