a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
250 B
C#
15 lines
250 B
C#
// CS1942: An expression type in `select' clause is incorrect. Type inference failed in the call to `Select'
|
|
// Line: 12
|
|
|
|
using System;
|
|
using System.Linq;
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
var e = from values in "abcd"
|
|
select null;
|
|
}
|
|
}
|