diff options
author | aclement <aclement> | 2005-05-12 09:32:03 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-05-12 09:32:03 +0000 |
commit | 0cb826c6a5d47a12eb03bf1751208c0b9a7b23a3 (patch) | |
tree | d125ed5f1691623aae6360d0c69b1f2c8a04327c /tests/bugs150/PR86832.aj | |
parent | 7b7c7b2fb25e09660f066e556a5008545d655f6f (diff) | |
download | aspectj-0cb826c6a5d47a12eb03bf1751208c0b9a7b23a3.tar.gz aspectj-0cb826c6a5d47a12eb03bf1751208c0b9a7b23a3.zip |
Fix and tests for pr86832, pr92163. NPE in detectHierarchyCycle
Diffstat (limited to 'tests/bugs150/PR86832.aj')
-rw-r--r-- | tests/bugs150/PR86832.aj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/bugs150/PR86832.aj b/tests/bugs150/PR86832.aj new file mode 100644 index 000000000..f78fe6441 --- /dev/null +++ b/tests/bugs150/PR86832.aj @@ -0,0 +1,4 @@ +import java.util.*; + +class A extends ArrayList {} +class B extends ArrayList<Object> {} |