view test/tools/javac/annotations/typeAnnotations/failures/StaticFields.java @ 2550:b0c086cd4520

8026564: import changes from type-annotations forest Reviewed-by: jjg Contributed-by: wdietl@gmail.com, steve.sides@oracle.com
author jjg
date Tue, 15 Oct 2013 15:57:13 -0700
parents 71f35e4b93a5
children
line wrap: on
line source

/*
 * @test /nodynamiccopyright/
 * @bug 6843077 8006775
 * @summary static field access isn't a valid location
 * @author Mahmood Ali
 * @compile/fail/ref=StaticFields.out -XDrawDiagnostics StaticFields.java
 */
import java.lang.annotation.*;

class C {
  static int f;
  // static block
  static {
    @A C.f = 1;
  }
  // static ref
  int a = @A C.f;
  // static method
  static int f() { return @A C.f; }
  // main
  public static void main(String... args) {
    int a = @A C.f;
  }
}

@Target(ElementType.TYPE_USE)
@interface A { }