Finishing setting up tests (compiler server).

This commit is contained in:
Dmitry Boulytchev (dboulytchev@gmail.com)
2012-02-02 01:13:16 +04:00
parent 24d086dedb
commit 7d194f269e
2643 changed files with 34 additions and 8 deletions
@@ -0,0 +1,6 @@
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
public @interface A {
int value();
}
@@ -0,0 +1,6 @@
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
@A(1)
public @interface A1 {
}
@@ -0,0 +1,6 @@
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
public @interface B {
int value();
}
@@ -0,0 +1,3 @@
@A(10)
public class C {
}