|
Project
|
ReSharper
|
|
Priority
|
Show-stopper |
|
Type
|
Bug |
|
Fix versions
|
2.5.1, 3.0 |
|
State
|
Fixed |
|
Assignee
|
Andrey Simanovsky |
|
Subsystem
|
No subsystem |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build |
class Stuff
{
static void Foo()
{
int x = 0;
checked(x + 1).ToString();
}
}
class Stuff
{
static void Foo()
{
int[] x = { 0 };
checked(x[1 - 1]) = 0;
}
}
class Stuff
{
static void Foo()
{
int x = 0;
checked(x) = 0;
}
}