Added tests for Task.WhenAll w/ empty list
[mono.git] / mcs / errors / cs0119-8.cs
1 // CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
2 // Line: 8
3
4 class C
5 {
6         public static void Main ()
7         {
8                 int i = (C) +1;
9         }
10 }