summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0023-12.cs
blob: a55c98277c9b7dbc681eaf6411295b61dd05c113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0023: The `+' operator cannot be applied to operand of type `string'
// Line: 10

using System;

public class Test
{
	static void Main ()
	{
		Console.WriteLine ("a" + + "b");
	}
}