| 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-33949 |
Missing warning 'Type argument specification is redundant' |
|
|
delegate void F(int x);
class Stuff
{
static void Foo<T>(T x)
{
F f = Foo<int>; // Type argument specification is redundant
}
}