1/* part of test for array problem */
2package android.test.anno;
3
4import java.lang.annotation.*;
5
6@Target({ ElementType.TYPE })
7@Retention(RetentionPolicy.RUNTIME)
8
9public @interface IntToString {
10    int from();
11    String to();
12}
13