diff options
author | aclement <aclement> | 2006-09-26 09:26:33 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-09-26 09:26:33 +0000 |
commit | fc39df195868a601e071f4fec900ab1854c43549 (patch) | |
tree | 73d8364ad9725ba4cc4179a99eec710dfb62a401 /tests/bugs153 | |
parent | b53e59401bf0228e127edbde36efe074181859f0 (diff) | |
download | aspectj-fc39df195868a601e071f4fec900ab1854c43549.tar.gz aspectj-fc39df195868a601e071f4fec900ab1854c43549.zip |
test and fix for 148908: structure model
Diffstat (limited to 'tests/bugs153')
-rw-r--r-- | tests/bugs153/pr148908/BadInterface.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs153/pr148908/BadInterface.java b/tests/bugs153/pr148908/BadInterface.java new file mode 100644 index 000000000..700f652be --- /dev/null +++ b/tests/bugs153/pr148908/BadInterface.java @@ -0,0 +1,11 @@ +import java.util.Comparator; + + +public interface BadInterface { + + static final Comparator MY_COMPARATOR = new Comparator() { + public int compare(Object o1, Object o2) { + return 0; + } + }; +} |