diff options
author | aclement <aclement> | 2005-11-17 12:45:18 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-11-17 12:45:18 +0000 |
commit | 555eae61fec76c78376a76803cd3b67171e1ddb6 (patch) | |
tree | 55aba1a257db7210bfe70186214f911eb10d5156 /tests/bugs150/pr115237.aj | |
parent | 608688ca74d3c19da3124a917c390232bca610a2 (diff) | |
download | aspectj-555eae61fec76c78376a76803cd3b67171e1ddb6.tar.gz aspectj-555eae61fec76c78376a76803cd3b67171e1ddb6.zip |
fixes for pr115237
Diffstat (limited to 'tests/bugs150/pr115237.aj')
-rw-r--r-- | tests/bugs150/pr115237.aj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/bugs150/pr115237.aj b/tests/bugs150/pr115237.aj index f1a019b2c..87241765d 100644 --- a/tests/bugs150/pr115237.aj +++ b/tests/bugs150/pr115237.aj @@ -7,7 +7,8 @@ public class pr115237 { // AA aa = AA.aspectOf(c); // hmm - n/a for parameterized types? - BB capt = BB.aspectOf(c); // unexpected compile error here + B b = B.aspectOf(c); + //BB capt = BB.aspectOf(c); // unexpected compile error here //System.out.println("A " + a + " capt " + capt); } static class C { |