test/hotspot/jtreg/runtime/LoadClass/test-classes/Hello.java
author ccheung
Tue, 21 Nov 2017 09:49:52 -0800
changeset 48016 df39ee817323
child 50115 94a048a97de4
permissions -rw-r--r--
8188122: Path length limits on Windows leads to obscure class loading failures Summary: Used the unicode version of windows API's to handled long paths and avoid using the stat() function. Reviewed-by: stuefe, iklam

/*
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

public class Hello {
  public static void main(String args[]) {
    System.out.println("Hello World");
  }
}