diff options
Diffstat (limited to 'tests/bugs172/pr398588/Code.java')
-rw-r--r-- | tests/bugs172/pr398588/Code.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs172/pr398588/Code.java b/tests/bugs172/pr398588/Code.java new file mode 100644 index 000000000..a11192728 --- /dev/null +++ b/tests/bugs172/pr398588/Code.java @@ -0,0 +1,10 @@ +import java.lang.annotation.*; +import a.b.c.Blah; + +@Blah +public class Code { + @Blah + public static void main(String[] argv) { + System.out.println("abcde"); + } +} |