Reporter | tobi (thymin) |
---|---|
Created | Dec 24, 2011 3:39:25 PM |
Updated | Mar 16, 2012 1:27:08 AM |
Priority | Major |
Type | Unspecified |
Fix versions | No Fix versions |
State | Open |
Assignee | Sergey Shkredov (serjic.shkredov) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
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.