Merge pull request #505 from roji/shutdown_flow
[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 }