diff options
author | aclement <aclement> | 2006-09-12 15:19:54 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-09-12 15:19:54 +0000 |
commit | 43638daf5d222e4dd9af8788d575b721f84d1210 (patch) | |
tree | 0bb30b11aedf5693d1b9c428cf6b5c60fff4bc93 /tests/bugs153/pr153490/Foo.java | |
parent | 7a4256df61f2d23aefb855ffb0ad6c6bfb2d36d6 (diff) | |
download | aspectj-43638daf5d222e4dd9af8788d575b721f84d1210.tar.gz aspectj-43638daf5d222e4dd9af8788d575b721f84d1210.zip |
testcode for 153490: nested delegate problems.
Diffstat (limited to 'tests/bugs153/pr153490/Foo.java')
-rw-r--r-- | tests/bugs153/pr153490/Foo.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs153/pr153490/Foo.java b/tests/bugs153/pr153490/Foo.java new file mode 100644 index 000000000..d6643e152 --- /dev/null +++ b/tests/bugs153/pr153490/Foo.java @@ -0,0 +1,7 @@ +public class Foo { + + public static void main(String[] args) { + A.TestType pre = A.TestType.Pre; + } + +} |