aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr278496_8/base/src/test2/MyAspect2.aj
blob: 5f79df23daac10fb334f66979b4ef19f3022927b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package test2;

import test.Demo;
import test2.MyAspect2;

public aspect MyAspect2 {
    
    static interface Bar {
        
    }
    declare parents : Demo implements Bar, Cloneable;
    
    public int Bar.bar() { 
        return 7;
    }

    
    static class Foo {
        public Foo() {
             
        } 
    }
    declare parents : Demo extends Foo;
    
    public int Foo.baz() {
    	return 7;
    } 

}