Reporter | T (thymin) |
---|---|
Created | Dec 24, 2011 3:39:25 PM |
Updated | Apr 16, 2018 11:30:38 AM |
Subsystem | Refactorings |
Assignee | Alisa Afonina (alisa.afonina) |
Priority | Major |
State | Open |
Type | Bug |
Fix version | Backlog |
Affected versions | 2018.1 |
Fixed In Version ReSharper | Undefined |
VsVersion | All Versions |
One of the many many lost formatting bugs during refactorings is this one:
class Program
{
static void Main(string[] args)
{
var x = uint.MaxValue;
}
}
class T
{
}
Now open the "move to another type" dialog. Type "T" but do not click the autocomplete-item for it. Instead just click next. R# now creates a new file called T.cs. This is a bug.
class Program
{
static void Main(string[] args)
{
var x = uint.MaxValue;
}
}
class T
{
}
Now open the "move to another type" dialog. Type "T" but do not click the autocomplete-item for it. Instead just click next. R# now creates a new file called T.cs. This is a bug.