summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/testData/Anonymous.txt
blob: a7cea92713b7d5279832cd97cb59db77f6f72039 (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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//


public class Anonymous {

    private int count = 0;


    public Anonymous() {
    }

    public Object produce() {
        ++this.count;
        final int var1 = this.count;
        return new Object() {
            public String toString() {
                return "anonymous_" + var1;
            }
        };
    }
}