blob: 9a70fba175adbe7b733025b32a5425578034d17d [file] [log] [blame]
class ParentCtor {
public static final String PARENT_CONST = "";
public ParentCtor(String s) {
}
}
class Usage {
public void test() {
new ParentCtor(ParentCtor.PARENT_CONST);
}
}