| Priority |
Critical |
| Type | Bug |
| State | Fixed |
| Assignee | Dmitry Lomov |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Build |
455
|
RSRP-42766 |
Safe delete of type parameter works wrong |
|
|
class Base<T,S>
{
public virtual void Foo(ref S x)
{
}
}
class Derived : Base<int,int>
{
}
class Base<S>
{
public virtual void Foo(ref S x)
{
}
}
class Derived : Base<S> // error CS0246: The type or namespace name 'S' could not be found
{
}
class Base<S>
{
public virtual void Foo(ref S x)
{
}
}
class Derived : Base<int>
{
}