[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0201-9.cs
1 // CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2 // Line: 9
3
4 class D
5 {
6         void Foo ()
7         {
8                 System.Threading.Tasks.TaskFactory m = null;
9                 m.StartNew (() => delegate { });
10         }
11 }