summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0034-5.cs
blob: 3a98984a1406c2d1f880652043dd3608379ba9af (plain)
1
2
3
4
5
6
7
8
9
10
// CS0034: Operator `+' is ambiguous on operands of type `null' and `null'
// Line: 8

class C
{
	public static void Main ()
	{
		const string s3 = null + null;
	}
}