summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/binding/complexExample/C.java
blob: 8d8827ba93d296f4437105b8288d5b468c8f102a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package g.h.i;
import d.e.f.*;

@Color("black")
public class C {

  public static void main(String []argv) {
    if (!(new C() instanceof java.io.Serializable))
      throw new RuntimeException("C should be serializable, done via decp");
  }

  public void c() { System.err.println("g.h.i.C.c running");}
}