From: aclement Date: Fri, 21 May 2010 16:11:57 +0000 (+0000) Subject: 312839: smaller class files X-Git-Tag: PRE_PUSHIN~22 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b7ccd103d080e9f9a4c03eb1f618b5a89bd3b058;p=aspectj.git 312839: smaller class files --- diff --git a/tests/bugs169/pr312839/one/Class.java b/tests/bugs169/pr312839/one/Class.java new file mode 100644 index 000000000..40babad5f --- /dev/null +++ b/tests/bugs169/pr312839/one/Class.java @@ -0,0 +1,13 @@ +package com.wibble.foo; + +public class Class { + private String name = "Andy"; + + public static void main(String [] argv) { + new Class().print(); + } + + public void print() { + System.out.println("Hello "+name); + } +} diff --git a/tests/bugs169/pr312839/one/X.aj b/tests/bugs169/pr312839/one/X.aj new file mode 100644 index 000000000..1643d9d02 --- /dev/null +++ b/tests/bugs169/pr312839/one/X.aj @@ -0,0 +1,15 @@ +package com.wibble.foo; + +import java.lang.annotation.*; + +aspect X { + public int Class.i; + public String Class.getMeSomething() { + return "abc"; + } + declare parents: Class implements java.io.Serializable; + declare @type: Class: @Foobar; +} + +@Retention(RetentionPolicy.RUNTIME) +@interface Foobar {}