summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-56.cs
blob: ab3a191262e85888712ae166cc60caefb91a5f24 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0019: Operator `+' cannot be applied to operands of type `Program' and `Program'
// Line: 8

public class Program
{
	static void Main ()
	{
		Program b = default (Program) + default (Program);
	}
}