Added tests for Task.WhenAll w/ empty list
[mono.git] / mcs / errors / cs0118-11.cs
1 // CS0118: `Test.SomeDel' is a `type' but a `variable' was expected
2 // Line: 14
3
4 using System;
5
6 namespace Test
7 {
8         public delegate void SomeDel (Action a);
9
10         public class TestClass
11         {
12                 public void TestMethod ()
13                 {
14                         SomeDel (() => { });
15                 }
16         }
17 }