summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/binding/complexExample/A.java
blob: 40a2205387dff4ec1c606e72e771dde8234c26f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package a.b.c;
import g.h.i.B;

import d.e.f.*;

public class A {
  public static void main(String []argv) {
    new A().a();
    new B().b();
    if ((new A()) instanceof java.io.Serializable) 
      throw new RuntimeException("A should never be serializable");
  }

  @Color("blue")
  public void a() {
    System.err.println("a.b.c.A.a() running");
  }
}