aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1810/493554/Dep.java
blob: 8ed5c1500d50fd8b9a13a0f6ff5cc3aaf3547c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package example.dep;

public class Dep {
    private int a, b, c;

    public Dep() {
	a = 5;
    }

    public String toString() {

        return "Dep";
    }
}