| Priority |
Major |
| Type | Bug |
| State | Fixed |
| Assignee | Andrey Simanovsky |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
3.1
|
| Fixed in build |
Next build |
| Fixed in build |
562
|
RSRP-47694 |
SafeDelete removes 'set' property accessor that has usages |
|
|
public class Test
{
public static int Foo
{
get { return 0; }
set { }
}
public static void Main(string[] args)
{
Foo = 3;
}
}