blob: ef9bdf75bbc924b9338c07b3479fa81118a5303e [file] [log] [blame]
// "Change "1" to '1' (to char literal)" "true"
class Simple {
Simple() {}
Simple(int i) {}
Simple(char ch) {}
public static void test() {
final Simple instance = new Simple(<caret>"1");
}
}