From b7ccd103d080e9f9a4c03eb1f618b5a89bd3b058 Mon Sep 17 00:00:00 2001 From: aclement Date: Fri, 21 May 2010 16:11:57 +0000 Subject: [PATCH] 312839: smaller class files --- tests/bugs169/pr312839/one/Class.java | 13 +++++++++++++ tests/bugs169/pr312839/one/X.aj | 15 +++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 tests/bugs169/pr312839/one/Class.java create mode 100644 tests/bugs169/pr312839/one/X.aj 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 {} -- 2.39.5