test/tools/javac/depOverrides/annotation/R.java

Mon, 16 Sep 2013 14:13:44 +0200

author
jlahoda
date
Mon, 16 Sep 2013 14:13:44 +0200
changeset 2028
4ce8148ffc4f
parent 0
959103a6100f
permissions
-rw-r--r--

8021112: Spurious unchecked warning reported by javac
6480588: No way to suppress deprecation warnings when implementing deprecated interface
Summary: Fixing DeferredLintHandler configuration, so lint warnings are reported with correct @SuppressWarnings settings
Reviewed-by: jjg, vromero

     1 /* /nodynamiccopyright/ */
     2 // combinations of methods defined in a base class
     3 // and overridden in subtypes
     5 // class should compile with warnings as shown
     7 class R extends Q {
     8     @Deprecated public void pDep_qDep_rDep() { }
     9                 public void pDep_qDep_rUnd() { } // warn
    10     //          public void pDep_qDep_rInh() { }
    11     @Deprecated public void pDep_qUnd_rDep() { }
    12                 public void pDep_qUnd_rUnd() { }
    13     //          public void pDep_qUnd_rInh() { }
    14     @Deprecated public void pDep_qInh_rDep() { }
    15                 public void pDep_qInh_rUnd() { } // warn
    16     //          public void pDep_qInh_rInh() { }
    17     @Deprecated public void pUnd_qDep_rDep() { }
    18                 public void pUnd_qDep_rUnd() { } // warn
    19     //          public void pUnd_qDep_rInh() { }
    20     @Deprecated public void pUnd_qUnd_rDep() { }
    21                 public void pUnd_qUnd_rUnd() { }
    22     //          public void pUnd_qUnd_rInh() { }
    23     @Deprecated public void pUnd_qInh_rDep() { }
    24                 public void pUnd_qInh_rUnd() { }
    25     //          public void pUnd_qInh_rInh() { }
    26 }

mercurial