summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0150-3.cs
blob: 7cedc859713d314672c0ea04949a1018ce373873 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0150: A constant value is expected
// Line: 8

public class C
{
	void Test ()
	{
		var zCoords = new double[uint.MaxValue] { 0 };
	}
}