summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr145963/ClassForAspectPath.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs152/pr145963/ClassForAspectPath.java')
-rw-r--r--tests/bugs152/pr145963/ClassForAspectPath.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs152/pr145963/ClassForAspectPath.java b/tests/bugs152/pr145963/ClassForAspectPath.java
new file mode 100644
index 000000000..0494c9c84
--- /dev/null
+++ b/tests/bugs152/pr145963/ClassForAspectPath.java
@@ -0,0 +1,12 @@
+public class ClassForAspectPath {
+
+ public static void main(String[] args) {
+ new ClassForAspectPath().method();
+
+ }
+
+ public void method() {
+ System.out.println("blah");
+ }
+
+}