You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IncorrectMessage2.java 223B

1234567891011121314
  1. class Foo<A> extends FooBase implements Marker<A> { }
  2. interface Marker<A> { }
  3. aspect AspectDoWhatEver {
  4. void Marker<A>.doWhatEver() { // do nothing
  5. }
  6. }
  7. abstract class FooBase
  8. {
  9. abstract void doWhatEver();
  10. }