/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            short 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__Short_max_multiply_71b.GoodG2BSink((Object)data);
        }
        /* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            short data;

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

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