cleol
[mcs.git] / errors / gcs0853.cs
blob83b7dd069ac2df9273e006f63472bbcff5858c72
1 // CS0853: An expression tree cannot contain named argument
2 // Line: 15
3 // Compiler options: -langversion:future
5 using System;
6 using System.Linq.Expressions;
8 class M
10 static void Named (int i)
14 public static void Main ()
16 Expression<Action> e = () => Named (i : 1);