1 2 3 4 5 6 7 8 9 10
// CS0034: Operator `+' is ambiguous on operands of type `null' and `null' // Line: 8 class C { public static void Main () { const string s3 = null + null; } }