blob: 6a37c6d07fd301aff563177d7dd9274f5df9ceb4 [file] [log] [blame]
package test0477;
public class A {
public A(String name) {
}
public A() {
this(undef());
}
void bar(String s) {
}
void bar() {
}
void bar(int i) {
}
}