aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs160/various/IncorrectMessage.java
blob: 632bcf3ff8798f0b9181c7affe38064d53f841a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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();
}