summaryrefslogtreecommitdiffstats
path: root/tests/bugs/interfaceNames/sub/ExecutionMonitor.java
blob: 92f9d73f4680e62a92eed954c3938f40a911c9e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
package sub;

public aspect ExecutionMonitor {
    public interface MonitoredItem {
        int getCount(String eventType, String eventName);
    }

    public int MonitoredItem.getCount(String eventType, String eventName) {
            return 0;
    } 
}