diff options
author | Andy Clement <aclement@pivotal.io> | 2016-02-18 12:08:06 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2016-02-18 12:08:06 -0800 |
commit | f4c8433cb046e343b8491d04f0a10bd150924507 (patch) | |
tree | aa31290831862215cea09543c92b6d2a9fc67ab7 /tests/bugs181 | |
parent | a17b28a1a9a0756cfc2181bf2b095650e186425a (diff) | |
download | aspectj-f4c8433cb046e343b8491d04f0a10bd150924507.tar.gz aspectj-f4c8433cb046e343b8491d04f0a10bd150924507.zip |
Fix 433351: Declare parents fails on interfaces on the inpath depending on directory structure
Diffstat (limited to 'tests/bugs181')
-rw-r--r-- | tests/bugs181/433351/Extender.aj | 10 | ||||
-rw-r--r-- | tests/bugs181/433351/InterfaceProj1.java | 7 | ||||
-rw-r--r-- | tests/bugs181/433351/InterfaceProj2.java | 7 |
3 files changed, 0 insertions, 24 deletions
diff --git a/tests/bugs181/433351/Extender.aj b/tests/bugs181/433351/Extender.aj deleted file mode 100644 index 433275660..000000000 --- a/tests/bugs181/433351/Extender.aj +++ /dev/null @@ -1,10 +0,0 @@ -package test.extender; -import test.*; - -public aspect Extender { - - declare parents: InterfaceProj1 extends InterfaceProj2; - -// declare parents: test.ClassProj1 extends ClassProj2; - -} diff --git a/tests/bugs181/433351/InterfaceProj1.java b/tests/bugs181/433351/InterfaceProj1.java deleted file mode 100644 index 7d90bef54..000000000 --- a/tests/bugs181/433351/InterfaceProj1.java +++ /dev/null @@ -1,7 +0,0 @@ -package test; - -public interface InterfaceProj1<T> { - - public abstract int aMethod(); - -} diff --git a/tests/bugs181/433351/InterfaceProj2.java b/tests/bugs181/433351/InterfaceProj2.java deleted file mode 100644 index b6846f54c..000000000 --- a/tests/bugs181/433351/InterfaceProj2.java +++ /dev/null @@ -1,7 +0,0 @@ -package test.extender; - -public interface InterfaceProj2<T> { - - public abstract int bMethod(); - -}
\ No newline at end of file |