Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0034-5.cs
1 // CS0034: Operator `+' is ambiguous on operands of type `null' and `null'
2 // Line: 8
3
4 class C
5 {
6         public static void Main ()
7         {
8                 const string s3 = null + null;
9         }
10 }