mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Finishing setting up tests (compiler server).
This commit is contained in:
parent
24d086dedb
commit
7d194f269e
+6
@@ -0,0 +1,6 @@
|
||||
import java.lang.annotation.*;
|
||||
import static java.lang.annotation.ElementType.*;
|
||||
|
||||
public @interface A {
|
||||
int value();
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import java.lang.annotation.*;
|
||||
import static java.lang.annotation.ElementType.*;
|
||||
|
||||
@A(1)
|
||||
public @interface A1 {
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import java.lang.annotation.*;
|
||||
import static java.lang.annotation.ElementType.*;
|
||||
|
||||
public @interface B {
|
||||
int value();
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
@A(10)
|
||||
public class C {
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
@A1
|
||||
public class C1 {
|
||||
}
|
||||
Reference in New Issue
Block a user