test/tools/javac/mandatoryWarnings/deprecated/P.java

Wed, 24 Sep 2014 11:38:26 -0700

author
katleman
date
Wed, 24 Sep 2014 11:38:26 -0700
changeset 2562
ed1a48bedfa8
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u40-b07 for changeset 2fa3858a281f

     1 /* /nodynamiccopyright/ */
     2 // P references Q, which will require Q to be attributed,
     3 // and therefore generate warnings about Q
     4 // In addition, P will generate warnings of its own
     5 // because it overrides deprecated methods in Q.
     7 class P
     8 {
     9     Q q = new Q() {
    10             void foo() { } // warning: override deprecated method
    11         };
    12 };

mercurial