summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0631-2.cs
blob: 5b52e469d2ea018de6f7328b2cc1a1edd60b0c14 (plain)
1
2
3
4
5
6
7
8
9
// CS0631: The parameter modifier `ref' is not valid in this context
// Line: 5

class X {
	public static explicit operator X (ref X[] foo)
	{
		return null;
	}
}