a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
13 lines
211 B
C#
13 lines
211 B
C#
// CS0742: Unexpected symbol `;'. A query body must end with select or group clause
|
|
// Line: 10
|
|
|
|
using System.Linq;
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
var q = from i in "abcd" where i;
|
|
}
|
|
}
|