[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0201-11.cs
blob536ee2424fac25e91d22b9ffd70b8fbec1d0e354
1 // CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2 // Line: 10
4 using System;
6 class X
8 public static void Main ()
10 new Func<int> (() => 0);