Closed
Description
Roslyn.VisualStudio.IntegrationTests.CSharp.CSharpFormatting.PasteCodeWithLambdaBody3
Assert.Contains() Failure
Not found:
using System;
class Program
{
static void Main()
{
Action a = () =>
{
using (null)
{
D d = delegate (int x)
{
return 2 * x;
};
}
};
}
}
In value:
using System;
class Program
{
static void Main()
{
Action a = () =>
{
using (null)
{
}
};
}
}