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

public class Finally {
    int a = 0;
    String s = null;
    double b = 1.0;

    public void update() {
        a = s.length();
        b++;
    }
}