aboutsummaryrefslogtreecommitdiff
path: root/src/test/test4/JIRA166.java
blob: bbd46efcaccf16144967de99961e91ee1ea1ec15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package test4;

public class JIRA166 {
    String length = "jira166";
    JIRA166 self() { return this; }
    void print() { System.out.println(length); }
    public int run() {
        print();
        System.out.println(length);
        return 1;
    }
}