536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
19 lines
286 B
C#
19 lines
286 B
C#
// CS8198: An expression tree cannot contain out variable declaration
|
|
// Line: 11
|
|
|
|
using System;
|
|
using System.Linq.Expressions;
|
|
|
|
class C
|
|
{
|
|
static void Main()
|
|
{
|
|
Expression<Func<bool>> e = () => Out (out int x);
|
|
}
|
|
|
|
static bool Out (out int value)
|
|
{
|
|
value = 3;
|
|
return true;
|
|
}
|
|
} |