aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs160
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs160')
-rw-r--r--tests/bugs160/various/IncorrectMessage.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs160/various/IncorrectMessage.java b/tests/bugs160/various/IncorrectMessage.java
new file mode 100644
index 000000000..632bcf3ff
--- /dev/null
+++ b/tests/bugs160/various/IncorrectMessage.java
@@ -0,0 +1,14 @@
+
+class Foo<A> extends FooBase implements Marker{}//Marker<A> { }
+
+interface Marker<A> { }
+
+aspect AspectDoWhatEver {
+ void Marker.doWhatEver() { // do nothing
+ }
+}
+
+abstract class FooBase
+{
+ abstract void doWhatEver();
+} \ No newline at end of file