* ecore.cs (Expression.Error_ValueCannotBeConverted): Add special
[mono.git] / mcs / errors / cs1002-2.cs
1 // Cs1002: Expecting `;'\r
2 // Line: 10\r
3 \r
4 public class C\r
5 {\r
6         public void Foo ()\r
7         {\r
8                         string returnValue = null;\r
9                 \r
10                         returnValue += (1+3)\r
11                         returnValue += ("");                            \r
12         }\r
13 }