-
Notifications
You must be signed in to change notification settings - Fork 2
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
Fix type alias substitution #118
Conversation
@@ -121,6 +121,11 @@ impl Substitution { | |||
for t in tail { | |||
arguments.push(self.apply_rec(t.clone(), depth)); | |||
} | |||
let alias_variables = alias_variables |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Important bit 👀
Codecov Report
@@ Coverage Diff @@
## main #118 +/- ##
==========================================
+ Coverage 84.40% 84.43% +0.02%
==========================================
Files 83 83
Lines 15274 15296 +22
==========================================
+ Hits 12892 12915 +23
+ Misses 2382 2381 -1
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
This reverts commit 11ed58d. It doesn't seem to work?
76f8ad3
to
45b4c25
Compare
let builder = std::thread::Builder::new(); | ||
|
||
let handler = builder | ||
.stack_size( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to increase the stack size for tests to pass on windows 😬
Hopefully this is just a debug
build problem...
This (I think) is the correct fix for the bug described in #115.
Note that I'm still swapping out
HashSet
forIndexSet
because we need the determinism for tests.