Exemplo n.º 1
0
 public static int Main(string[] args)
 {
     Tst a = new Tst();
     a.f30();
     long expected = 1 << 30;
     Console.WriteLine("result = {0} expected = {1}", a.i, expected);
     return (a.i == expected ? 100 : -1);
 }
Exemplo n.º 2
0
        public static int Main(string[] args)
        {
            Tst a = new Tst();

            a.f30();
            long expected = 1 << 30;

            Console.WriteLine("result = {0} expected = {1}", a.i, expected);
            return(a.i == expected ? 100 : -1);
        }