BlankFinal.java 289 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Test to see if "blank final" variables work.
// From Mo DeJong <mdejong@cygnus.com>

public class BlankFinal {
    static final boolean cond;

    static {
        try
        {
            cond = true;
        }
        catch(Exception e) {
            // do nothing
        }
    }
}