diff options
author | mwebster <mwebster> | 2006-10-04 13:35:09 +0000 |
---|---|---|
committer | mwebster <mwebster> | 2006-10-04 13:35:09 +0000 |
commit | 6b31b32ae338cdecea6e20aa87fe05ca0cc2fb57 (patch) | |
tree | b22499c9d10ffeb8779f88e2dbd7c5bff447ffba /tests/bugs153/pr132080/HelloWorld.java | |
parent | 513564a9e5b5ae5d03c4f0547ee7823e903d3c52 (diff) | |
download | aspectj-6b31b32ae338cdecea6e20aa87fe05ca0cc2fb57.tar.gz aspectj-6b31b32ae338cdecea6e20aa87fe05ca0cc2fb57.zip |
Bug 132080 "LTW concrete-aspect definitions not exposed to weaver"
Diffstat (limited to 'tests/bugs153/pr132080/HelloWorld.java')
-rw-r--r-- | tests/bugs153/pr132080/HelloWorld.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs153/pr132080/HelloWorld.java b/tests/bugs153/pr132080/HelloWorld.java new file mode 100644 index 000000000..8f62298fa --- /dev/null +++ b/tests/bugs153/pr132080/HelloWorld.java @@ -0,0 +1,11 @@ +public class HelloWorld { + + public void println () { + System.out.println("Hello World!"); + } + + public static void main (String[] args) throws Exception { + new HelloWorld().println(); + } + +}
\ No newline at end of file |