Correctly reapplied my last changes
[mono.git] / mcs / errors / cs0023-12.cs
1 // cs0023: The `+' operator cannot be applied to operand of type `string'\r
2 // Line: 10\r
3 \r
4 using System;\r
5 \r
6 public class Test\r
7 {\r
8         static void Main ()\r
9         {\r
10                 Console.WriteLine ("a" + + "b");\r
11         }\r
12 }