| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Alexander Zverev |
| Subsystem | Quick Fixes |
| Affected versions |
No affected versions
|
| Fixed in |
4.1
|
| Fixed in build |
Next build |
| Fixed in build |
900
|
RSRP-35633 |
QuickFix "make foo override" should remove "static" keyword |
|
|
abstract class Foo
{
protected virtual void foo()
{
throw new NotImplementedException();
}
}
class FooImpl : Foo
{
protected static void foo()
{
throw new NotImplementedException();
}
}