1 /*
   2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
   3  * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
   4  */
   5 
   6 package myPkg1;
   7 
   8 public class SuperClazz {
   9     public static void testParent() {
  10         System.out.println("SuperClazz: entering testParent()");
  11 
  12         // The line below will be used to check for successful class transformation
  13         System.out.println("parent-transform-check: this-should-be-transformed");
  14     }
  15 }