public override void Bad()
        {
            byte data;

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = byte.MaxValue;
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE190_Integer_Overflow__Byte_max_multiply_67b.BadSink(dataContainer);
        }