langtools/test/tools/javac/policy/test3/A.java
author alundblad
Mon, 18 Apr 2016 21:07:50 +0200
changeset 37633 d16d6d59446d
parent 2514 f8929e3790b4
permissions -rw-r--r--
8036952: copyright issues in jdk9/dev/langtools files Summary: Updated copyright notices. Reviewed-by: jjg, jlahoda

/* /nodynamiccopyright/ */

class A {
    void m1() {
        System.err.println("hello");
        0 // syntax error
        System.err.println("world");
    }

    void m2() {
    }
}