a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
19 lines
289 B
C#
19 lines
289 B
C#
// CS1952: An expression tree cannot contain a method with variable arguments
|
|
// Line: 11
|
|
|
|
using System;
|
|
using System.Linq.Expressions;
|
|
|
|
class C
|
|
{
|
|
void Foo ()
|
|
{
|
|
Expression<Func<int>> e = () => InstanceArgList (__arglist (0));
|
|
}
|
|
|
|
int InstanceArgList (__arglist)
|
|
{
|
|
return 54;
|
|
}
|
|
}
|