Start with the following code:
namespace N
{
public class C
{
public void F()
{
public readonly int Temp = 0;
var z = 1;
}
}
}
Then type using in front of public readonly int Temp = 0;.
namespace N
{
public class C
{
public void F()
{
using public readonly int Temp = 0;
var z = 1;
}
}
}
VS crashes.
Start with the following code:
Then type
usingin front ofpublic readonly int Temp = 0;.VS crashes.