// This tests if jampack rewrites calls to inherited methods correctly

layer Asuper;

class top extends superTop {
   public void AsuperFunc() { 
      /* do something */
      super.AnothersuperFunc();
   } 
}