Added tests for Task.WhenAll w/ empty list
[mono.git] / mcs / errors / cs0019-51.cs
1 // CS0019: Operator `+' cannot be applied to operands of type `null' and `MyTypeImplicitOnly?'
2 // Line: 13
3
4 struct MyTypeImplicitOnly
5 {
6 }
7
8 class C
9 {
10         static void Main ()
11         {
12                 MyTypeImplicitOnly? mt = null;
13                 mt = null + mt;
14         }
15 }