11 lines
140 B
C#
Raw Normal View History

// CS0150: A constant value is expected
// Line: 8
public class C
{
void Test ()
{
var zCoords = new double[uint.MaxValue] { 0 };
}
}