langtools/test/tools/javac/T4906100.java
author mikejwre
Wed, 09 Jun 2010 18:56:41 -0700
changeset 5634 895b66935810
parent 10 06bc494ca11e
child 6150 d055fa8ced62
permissions -rw-r--r--
Merge

/*
 * @test  /nodynamiccopyright/
 * @bug 4906100
 * @summary detect empty statement after if
 * @compile/ref=T4906100.out -XDstdout -XDrawDiagnostics -Xlint:empty T4906100.java
 */

class T4906100 {
    void f1(int a, int b) {
        if (a == b);
            System.out.println("a == b");
    }

    @SuppressWarnings("empty")
    void f2(int a, int b) {
        if (a == b);
            System.out.println("a == b");
    }

    // check that { } is not treated as an empty statement
    void f3(int a, int b) {
        if (a == b) { }
            System.out.println("a == b");
    }
}