|
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 |
using StringHash = System.Collections.Generic.Dictionary<string, string>;
public class Stuff
{
static void Foo(StringHash.Enumerator she)
{
}
}
using System.Collections.Generic;
using StringHash = System.Collections.Generic.Dictionary<string, string>;
public class Stuff
{
// error CS0246: The type or namespace name 'TKey' could not be found (are you missing a using directive or an assembly reference?)
// error CS0246: The type or namespace name 'TValue' could not be found (are you missing a using directive or an assembly reference?)
static void Foo(IEnumerator<KeyValuePair<TKey, TValue>> she)
{
}
}