diff options
author | aclement <aclement> | 2008-11-02 19:58:10 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-11-02 19:58:10 +0000 |
commit | fb630fa62b6654767dcdef3919105a89f9becdd3 (patch) | |
tree | 502e3a9f4aef38813e8998219dccaa247bd7d7de /tests/bugs163/pr253109/CodeTwo.java | |
parent | 44bef3e41af9839f1be28a80e53b7014c8e76133 (diff) | |
download | aspectj-fb630fa62b6654767dcdef3919105a89f9becdd3.tar.gz aspectj-fb630fa62b6654767dcdef3919105a89f9becdd3.zip |
253109: tests
Diffstat (limited to 'tests/bugs163/pr253109/CodeTwo.java')
-rw-r--r-- | tests/bugs163/pr253109/CodeTwo.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs163/pr253109/CodeTwo.java b/tests/bugs163/pr253109/CodeTwo.java new file mode 100644 index 000000000..ea5a3026b --- /dev/null +++ b/tests/bugs163/pr253109/CodeTwo.java @@ -0,0 +1,13 @@ +import java.util.*; + +public aspect CodeTwo { + before(): execution(* CodeTwo.*(..)) && args(List<? extends Number>) {} + + void m(List<Integer> li) {} + + public void callm() { + List<? extends Number> lqn = new ArrayList<Number>(); + // m(lqn); + } + +} |