aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs163/pr257754/DefaultFoo.java
blob: b0aaf41d5b66754660f2143d45c600e1e788c6e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package impl;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.DeclareParents;

public class DefaultFoo implements Foo {
//    Uncommenting the following fixes the error    
    DefaultFoo() {
    }
    public void doFoo() {
        System.out.println("In doFoo " + this.getClass());
    }
}