blob: 552c258de3157e9d1aa9e0f4f07479e28f1c77aa [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');
}
}