mirror of
https://github.com/revanced/smali.git
synced 2025-04-30 14:44:26 +02:00

- updated the tests and examples to use the new comment style - changed the lexer error messages to include the source file path git-svn-id: https://smali.googlecode.com/svn/trunk@83 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
19 lines
624 B
Smali
19 lines
624 B
Smali
.class public abstract interface annotation LRecursiveAnnotation;
|
|
.super Ljava/lang/Object;
|
|
.implements Ljava/lang/annotation/Annotation;
|
|
|
|
#this is a recursive annotation that has a default value of itself.
|
|
#Trying to print .toString() on an instance of this annotation
|
|
#will cause a stack overflow
|
|
|
|
.method public abstract value()LRecursiveAnnotation;
|
|
.end method
|
|
|
|
.annotation system Ldalvik/annotation/AnnotationDefault;
|
|
value = .subannotation LRecursiveAnnotation;
|
|
value = .subannotation LRecursiveAnnotation;
|
|
.end subannotation
|
|
.end subannotation
|
|
.end annotation
|
|
|