public override void Bad()
        {
            float data;

            /* FLAW: Use a number larger than short.MaxValue */
            data = long.MaxValue + 5f;
            float[] dataArray = new float[5];
            dataArray[2] = data;
            CWE197_Numeric_Truncation_Error__float_large_to_short_66b.BadSink(dataArray);
        }