aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/Prune.java
blob: 1daf9cbb26b4deffc58e3012f444e77143fd855f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test2;

public class Prune extends java.awt.Point implements Cloneable, Runnable {
    public int value;

    public Prune(int i) {
        value = i;
    }

    public void run() {}

    public int sum() {
        return x + y;
    }
}