Added tests for Task.WhenAll w/ empty list
[mono.git] / mcs / errors / cs0037-8.cs
1 // CS0037: Cannot convert null to `int' because it is a value type
2 // Line: 9
3
4 class C
5 {
6         public static void Main ()
7         {
8                 int i = 44;
9                 i <<= null;
10         }
11 }