aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr312839/one/X.aj
blob: 1643d9d0259731d4e96d4b72ca71da32d7f80d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.wibble.foo;

import java.lang.annotation.*;

aspect X {
  public int Class.i;
  public String Class.getMeSomething() {
    return "abc";
  }
  declare parents: Class implements java.io.Serializable;
  declare @type: Class: @Foobar;
}

@Retention(RetentionPolicy.RUNTIME)
@interface Foobar {}