[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0853.cs
blobe164e80224b4df2f823b7686fb4dce4da17435a7
1 // CS0853: An expression tree cannot contain named argument
2 // Line: 15
4 using System;
5 using System.Linq.Expressions;
7 class M
9 static void Named (int i)
13 public static void Main ()
15 Expression<Action> e = () => Named (i : 1);