-
-
Notifications
You must be signed in to change notification settings - Fork 609
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 Issue 16621 - [REG2.060] DMD hang in semantic3 on alias this #7588
Conversation
|
Thanks for your pull request, @WalterBright! Bugzilla references
|
|
@wilzbach I know we're right on the cusp of a release. Should this be in stable or master? |
|
Since it's over a year old, master is fine. |
|
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.
Pending rebase to stable... or not... Walter's call.
FYI: 2.078.0 has already been tagged a couple of hours ago (https://github.com/dlang/dmd/releases/tag/v2.078.0). |
|
Yes, we should target stable so the changes can land in the 2.078.1 release. |
|
FYI: We can always trivial merge stable back into master. Here's the simple script I use: #!/bin/bash
set -ueo pipefail -o xtrace
DIR=${1:-$(pwd)}
pushd $DIR
git fetch && git fetch upstream
git checkout master
git merge --ff-only upstream/master
git branch -D merge_stable
git checkout -b merge_stable
git merge upstream/stable
# <- Solve merge conflicts (if any occurred)
hub pull-request
git checkout master
popd |
|
No description provided.