summaryrefslogtreecommitdiffstats
path: root/tests/bugs160/various/IncorrectMessage2.java
blob: 116e8cd648c862291e13c2d2b17fade63df0e7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Foo<A> extends FooBase implements Marker<A> { }

interface Marker<A> { }

aspect AspectDoWhatEver {
    void Marker<A>.doWhatEver()  { // do nothing
    }
}

abstract class FooBase
{
    abstract void doWhatEver();
}