|
Project
|
ReSharper
|
|
Priority
|
Critical |
|
Type
|
Bug |
|
Fix versions
|
Mirabile Futurum |
|
State
|
Open |
|
Assignee
|
Olga Lobacheva |
|
Subsystem
|
Psi |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build
|
using System.Collections.Generic;
using System.Linq;
public class Dest
{
public void Foo(IEnumerable<string> gov)
{
var enumerable = gov.Select(x => x.ToString());
var ints = from h in gov where h != null select h; // 'h' under 'select' doesn't have a type (((
}
}