/* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            uint data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            CWE190_Integer_Overflow__UInt32_max_add_54b.GoodG2BSink(data);
        }
        /* goodB2G() - use badsource and goodsink */
        private void GoodB2G()
        {
            uint data;

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = uint.MaxValue;
            CWE190_Integer_Overflow__UInt32_max_add_54b.GoodB2GSink(data);
        }
        public override void Bad()
        {
            uint data;

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = uint.MaxValue;
            CWE190_Integer_Overflow__UInt32_max_add_54b.BadSink(data);
        }