-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Area-IDEFeature Requesthelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it
Milestone
Description
-
Create a linked C# file between two projects, one with "ONE" defined and the other with "TWO" defined.
-
Copy/paste this code:
class C { void Test(int i) { Test(7); } #if ONE void Test(double x) { } #elif TWO void Test(long x) { } #endif }
-
Rename T to Test
Expected: The inserted comment should look like:
/* TODO: Unmerged change from project 'LinkedFileRenameTwo'
Before:
Test(7);
After:
Test((long)7);
*/Actual: The inserted comment looks like:
/* Unmerged change from project 'LinkedFileRenameTwo'
Before:
Test(7);
After:
Test((long)7);
*/Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area-IDEFeature Requesthelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it