blob: e84fcfa3aa40fc0911bebc0a8b12b74e2ed87f20 [file] [log] [blame]
/* part of test for array problem */
package android.test.anno;
import java.lang.annotation.*;
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
public @interface IntToString {
int from();
String to();
}