aboutsummaryrefslogtreecommitdiffstats
path: root/tests/options/WarnDeprecated.java
blob: e86b7952288ead3dbc69794315f45e3fd960c8de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class WarnDeprecated {

    /** */
    public static void main(String[] args) {
       if (null == args) {
            String s = new String(new byte[] {}, 0); // CE 10 deprecated if warn:deprecated
       }
    }
}