summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-2.cs
blob: f8d094b0ad1d7863e898415583fbc2a36c029f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1525: Unexpected symbol `returnValue'
// Line: 11

public class C
{
	public void Foo ()
	{
			string returnValue = null;
		
			returnValue += (1+3)
			returnValue += ("");				
	}
}