예제 #1
0
      public static void InheritanceTest18()
      {
          TestCls5 obj = new TestCls5();

          TestClass2.Register(obj);

          TestCls5 res;

          Alloc <TestCls5>(out res);
          res.bbbb = 5000;
          if (res.bbbb != 5000)
          {
              throw new Exception();
          }
      }