langtools/test/tools/javac/T4881267.java
author jlahoda
Tue, 16 Aug 2016 16:43:00 +0200
changeset 40504 0a01f6710c84
parent 20251 90a73be53aa0
permissions -rw-r--r--
8078561: Error message should be generated once when -source 6 is specified Summary: Code to avoid duplicated errors about features not supported in the current source level moved to Log Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20251
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     1
/*
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     2
 * @test /nodynamiccopyright/
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     3
 * @bug 4881267
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     4
 * @summary improve diagnostic for "instanceof T" for type parameter T
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     5
 * @compile/fail/ref=T4881267.out -XDrawDiagnostics T4881267.java
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     6
 */
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     7
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     8
class T4881267 {
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
     9
    <T> void m(Object o) {
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
    10
        boolean b = o instanceof T;
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
    11
    }
90a73be53aa0 4881267: improve diagnostic for "instanceof T" for type parameter T
kizune
parents:
diff changeset
    12
}