aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr136258/StatisticsTypeImpl.java
blob: 0837f4192604cf0f38a235d4cc15ae05b8f96917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
interface StatisticsType {
}

public class StatisticsTypeImpl implements StatisticsType {
    static class UIStatisticsType extends UofwStatisticsType {
    };

    public static void main(String argz[]) {
        System.out.println(new UIStatisticsType().toString());
    }
}

class UofwStatisticsType extends StatisticsTypeImpl {
}