| Priority |
Major |
| Type | Bug |
| State | Fixed |
| Assignee | Valentin Kipiatkov |
| Subsystem | Code Analysis - Solution-wide |
| Affected versions |
No affected versions
|
| Fixed in |
3.1
|
| Fixed in build |
Next build |
| Fixed in build |
541
|
RSRP-50607 |
Solution analysis does not reanalyze necessary files when adding abstract member implementation |
|
|
abstract class Base1
{
public abstrace void Foo();
}
abstract class Base2 : Base1
{
}
class Derived : Base2{}