-
Notifications
You must be signed in to change notification settings - Fork 267
Open
Labels
Component: Merge ConflictIssue needs changes to merge conflict resolversIssue needs changes to merge conflict resolversEdition: UltimateEffort: LowIssues require < 1 week of workIssues require < 1 week of workImpact: MediumIssue is impactful with a bad, or no, workaroundIssue is impactful with a bad, or no, workaroundState: Blocked (Issue)Issue is blocked on the resolution of another issueIssue is blocked on the resolution of another issue
Description
If I have:
struct bbbb {
int aaaa;
}
struct aaaa {
struct bbbb aaaa;
}
...defined newly on both sides of a merge, it should merge into two structs with suffixes and updated references:
struct bbbb_1 { struct bbbb_2 {
int aaaa; int aaaa;
} }
struct aaaa_1 { struct aaaa_2 {
struct bbbb_1 aaaa; struct bbbb_2 aaaa;
} }
It does the two structs with suffixes part correctly, but leaves the inner member still pointing to bbbb which no longer exists.
Blocked by #5720.
Metadata
Metadata
Assignees
Labels
Component: Merge ConflictIssue needs changes to merge conflict resolversIssue needs changes to merge conflict resolversEdition: UltimateEffort: LowIssues require < 1 week of workIssues require < 1 week of workImpact: MediumIssue is impactful with a bad, or no, workaroundIssue is impactful with a bad, or no, workaroundState: Blocked (Issue)Issue is blocked on the resolution of another issueIssue is blocked on the resolution of another issue