for "build" config, import corlib common sources at unix instead (#11989)
[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);