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