summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/PR92837/base/sample/Logging.aj
blob: e1f5537d51139c30ec338d9d8a6dfe18b5787b07 (plain)
1
2
3
4
5
6
7
package sample;

public aspect Logging {
	declare parents: sample.* && !Logging implements Loggable;
	public interface Loggable {}
	public Object Loggable.getLogger() { return null; }
}