-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Higher-kinded F-bounded types are not recognized #974
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Reproduced with |
odersky
added a commit
to odersky/dotty
that referenced
this issue
Jan 14, 2016
containsRefinedThis inspects symbols and infos of named types in order to avoid needless traversals. As i974 shows, this can lead to infinite recursions. The fix is not to force a NamedType denotation, assume the worst and traverse the prefix if a NamedType is not yet populated with a denotation. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
odersky
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 14, 2016
containsRefinedThis inspects symbols and infos of named types in order to avoid needless traversals. As i974 shows, this can lead to infinite recursions. The fix is not to force a NamedType denotation, assume the worst and traverse the prefix if a NamedType is not yet populated with a denotation. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
odersky
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 15, 2016
containsRefinedThis inspects symbols and infos of named types in order to avoid needless traversals. As i974 shows, this can lead to infinite recursions. The fix is not to force a NamedType denotation, assume the worst and traverse the prefix if a NamedType is not yet populated with a denotation. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
odersky
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 15, 2016
containsRefinedThis inspects symbols and infos of named types in order to avoid needless traversals. As i974 shows, this can lead to infinite recursions. The fix is not to force a NamedType denotation, assume the worst and traverse the prefix if a NamedType is not yet populated with a denotation. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
odersky
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 15, 2016
Need to also look info refined types. Need to handle case where we hit a NoCompleter again. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
odersky
added a commit
to dotty-staging/dotty
that referenced
this issue
Jan 16, 2016
Need to also look info refined types. Need to handle case where we hit a NoCompleter again. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
smarter
pushed a commit
to dotty-staging/dotty
that referenced
this issue
Jan 16, 2016
Need to also look info refined types. Need to handle case where we hit a NoCompleter again. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
smarter
pushed a commit
to dotty-staging/dotty
that referenced
this issue
Jan 16, 2016
Need to also look info refined types. Need to handle case where we hit a NoCompleter again. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
DarkDimius
pushed a commit
to dotty-linker/dotty
that referenced
this issue
May 9, 2016
Need to also look info refined types. Need to handle case where we hit a NoCompleter again. Fixes scala#974 and makes MutableSortedSetFactory in stdlib compile.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This causes a stack overflow:
The reason why is explained in #943 (comment)
The text was updated successfully, but these errors were encountered: