aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/serialVersionUID/Test.java
blob: 2e267b3b39d9e9c59b77e280f089bc79b5f28d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.io.Serializable;

public class Test implements Serializable {

	private int i;

	public void run () {
		System.out.println("Test.run()");
		i++;
	}
	
	public static void main (String[] args) throws Exception {
		Test test = new Test();
		test.run();
		Util.write(Util.DEFAULT_NAME,test);
	}
}