536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
15 lines
308 B
C#
15 lines
308 B
C#
// CS8201: Out variable and pattern variable declarations are not allowed within a query clause
|
|
// Line: 11
|
|
|
|
using System.Linq;
|
|
|
|
class Program
|
|
{
|
|
public static void Main ()
|
|
{
|
|
var a = "abcdef";
|
|
var res = from x in a from y in M (a, out var z) select x;
|
|
}
|
|
|
|
public static T M<T>(T x, out T z) => z = x;
|
|
} |