Browse Source

237419: testcode

tags/V1_6_1rc1
aclement 16 years ago
parent
commit
8bf125c663

+ 5
- 0
tests/bugs161/pr237419/problem/Generic.java View File

@@ -0,0 +1,5 @@
package problem;

public class Generic<T> {

}

+ 5
- 0
tests/bugs161/pr237419/problem/GenericService.java View File

@@ -0,0 +1,5 @@
package problem;

public abstract class GenericService<T extends Generic<?>> {
protected abstract T update(T current);
}

+ 5
- 0
tests/bugs161/pr237419/problem/Specific.java View File

@@ -0,0 +1,5 @@
package problem;

public class Specific extends Generic<String> {

}

+ 12
- 0
tests/bugs161/pr237419/problem/SpecificService.java View File

@@ -0,0 +1,12 @@
package problem;

public class SpecificService extends GenericService<Specific> {
@Override
protected Specific update(Specific current) {
return null;
}

public static void main(String[] args) {
new SpecificService();
}
}

+ 8
- 0
tests/bugs161/pr237419/problem/aspect/AnyAspect.java View File

@@ -0,0 +1,8 @@
package problem.aspect;

import org.aspectj.lang.annotation.Aspect;

//@Aspect public class AnyAspect {
@Aspect
public class AnyAspect {
}

Loading…
Cancel
Save