Version Used: VS 2015 Update 2
Steps to Reproduce:
- Add
using System;
- Write the following code:
Action a = () => { },
b = () => { };
- Format the document
Expected Behavior: Nothing changes
Actual Behavior: The comma goes on its own line:
Action a = () => { }
,
b = () => { };
Might be related to #7704, another lambda formatting bug I reported.