blob: 6ba3520e0a03a1ce90456a00dd63d9cf264d66f0 [file] [log] [blame]
public class SelectConstructor_in {
public /*[*/SelectConstructor_in/*]*/() {
}
public void test(String msg) {
}
public static void main(String[] args) {
SelectConstructor_in sc= new SelectConstructor_in();
sc.test("hello");
}
}