blob: 3e64e62c1fa84eabe406188c7e074ff3cc9e7aeb [file] [log] [blame]
public class A {
A () {}
A (int i) {
this ();
}
A (String s) {
this (0);
}
}