| Priority |
Major |
| Type | Bug |
| State | Fixed |
| Assignee | Eugene Pasynkov |
| Subsystem | Code Analysis |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Build |
329
|
| Fixed in build |
500
|
RSRP-33946 |
Signature is not redundant because of 'out' modifier |
|
|
using System;
delegate void F(out int x);
class Stuff
{
static void Foo()
{
F f = delegate(out int x) { throw new NotImplementedException(); }; // Signature is not redundant because of 'out' modifier
}
}