hotspot/test/testlibrary_tests/ctw/Bar.java
author duke
Wed, 05 Jul 2017 21:49:00 +0200
changeset 38840 7693aa00e131
parent 26915 ba674d5d0f77
child 46503 760f8f589de3
permissions -rw-r--r--
Merge
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
}