using Company.Namespace1
public class MyClass() {
}
If I use the "Move type" refactoring, and I move the class into the "Company.Namespace1" namespace, ReSharper should remove the using statement since it is no longer required.
Description
With a class as follows:
using Company.Namespace1
public class MyClass() {
}
If I use the "Move type" refactoring, and I move the class into the "Company.Namespace1" namespace, ReSharper should remove the using statement since it is no longer required.