hotspot/test/testlibrary_tests/ctw/Bar.java
author vlivanov
Mon, 29 Sep 2014 09:29:24 -0700
changeset 26915 ba674d5d0f77
child 46503 760f8f589de3
permissions -rw-r--r--
8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests Reviewed-by: iignatyev, vlivanov, kvn Contributed-by: evgeniya.stepanova@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26915
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     1
public class Bar {
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     2
  private static void staticMethod() { }
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     3
  public void method() { }
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     4
  protected Bar() { }
ba674d5d0f77 8025606: [TESTBUG] Move ctw-tests to /testlibrary_tests
vlivanov
parents:
diff changeset
     5
}