langtools/test/tools/javac/typeAnnotations/failures/Scopes.java
author jjg
Thu, 27 Aug 2009 11:08:27 -0700
changeset 3766 7e2df99e9223
parent 3150 a783d225c3e1
permissions -rw-r--r--
6875336: some tests should use /nodynamiccopyright/ Reviewed-by: darcy

/*
 * @test /nodynamiccopyright/
 * @bug 6843077
 * @summary check that A is accessible in the class type parameters
 * @author Mahmood Ali
 * @compile/fail/ref=Scopes.out -XDrawDiagnostics -source 1.7 Scopes.java
 */
class Scopes<T extends @UniqueInner Object> {
  @interface UniqueInner { };
}