| Priority |
Show-stopper |
| Type | Bug |
| State | Fixed |
| Assignee | Olga Lobacheva |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Build |
444
|
| Fixed in build |
500
|
RSRP-41492 |
'Move class to another namespace' breaks code |
|
|
namespace N
{
using Q = A<int>;
public class A<T>
{
}
public class B : Q
{
}
}
namespace M
{
public class A<T>
{
}
public class B : A // error CS0305: Using the generic type 'M.A<T>' requires '1' type arguments
{
}
}