test/tools/javac/6717241/T6717241b.java

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

author
jlahoda
date
Mon, 16 Sep 2013 14:13:44 +0200
changeset 2028
4ce8148ffc4f
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
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

mcimadamore@80 1 /**
jjg@384 2 * @test /nodynamiccopyright/
mcimadamore@80 3 * @bug 6717241
mcimadamore@80 4 * @summary some diagnostic argument is prematurely converted into a String object
mcimadamore@80 5 * @author Maurizio Cimadamore
jjg@611 6 * @compile/fail/ref=T6717241b.out -XDrawDiagnostics T6717241b.java
mcimadamore@80 7 */
mcimadamore@80 8
mcimadamore@80 9 class T6717241b {
mcimadamore@80 10 void test() {
mcimadamore@80 11 //this will generate a 'cant.resolve.location'
mcimadamore@80 12 Object o = v;
mcimadamore@80 13 //this will generate a 'cant.resolve.location.args'
mcimadamore@80 14 m1(1, "");
mcimadamore@80 15 //this will generate a 'cant.resolve.location.args.params'
mcimadamore@80 16 T6717241b.<Integer,Double>m2(1, "");
mcimadamore@80 17 }
mcimadamore@80 18 }

mercurial