-
-
Notifications
You must be signed in to change notification settings - Fork 416
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
Segfault #1474
Comments
In the reachability data structure in the compiler, |
There seem to be a workaround for the problem, you can make |
After looking into it, unions and intersections aren't picking up their subtypes during the reachability analysis. |
This change ensures that unions and intersections pick up their subtypes during the reachability analysis. Closes ponylang#1474.
This change ensures that unions and intersections pick up their subtypes during the reachability analysis. Closes ponylang#1474.
This change ensures that unions and intersections pick up their subtypes during the reachability analysis. Closes #1474.
I haven't fully worked the why of this segfault:
Minimal case:
CRASHES:
Changing
class MockTaggable
toactor MockTaggable
fixes the segfault and the test runs to completion.Not calling tc.foo from inside the primitive also takes care of the issue:
DOESN'T CRASH:
The text was updated successfully, but these errors were encountered: