Update code samples and prose for ponyc 0.70.0 constraint cap change - #590
Open
SeanTAllen wants to merge 1 commit into
Open
Update code samples and prose for ponyc 0.70.0 constraint cap change#590SeanTAllen wants to merge 1 commit into
SeanTAllen wants to merge 1 commit into
Conversation
ponyc 0.70.0 uses the default capability of the named type in constraints instead of substituting #any. Code samples that relied on the implicit #any need explicit capability annotations.
✅ Deploy Preview for pony-tutorial ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
SeanTAllen
marked this pull request as ready for review
August 30, 2026 02:58
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ponyc 0.70.0 uses the default capability of named types in type parameter constraints instead of substituting
#any. Code samples and prose that relied on the implicit#anyneed updating.Changes:
control-structures-iftype-capability.pony:A: Animal→A: Animal #any(the example passes bothCat refandCat val, so needs any-cap)appendices-examples-test-helper.pony:Stringable→Stringable #read(matchesEquatable[A] #readon the other side)generics-and-reference-capabilities-explicit-constraint-and-default-capability.pony:A: Any→A: Any #any#any" instead of "leave out the capability"