summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0100-7.cs
blob: 6e48d0193302121867b7454a582c177bfc2cf99c (plain)
1
2
3
4
5
6
7
// CS0100: The parameter name `obj' is a duplicate
// Line: 4

class C
{
	public static extern bool operator +(C obj, C obj);
}