mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
17 lines
235 B
Java
17 lines
235 B
Java
// "Change "1" to '1' (to char literal)" "true-preview"
|
|
class Simple extends Ancestor {
|
|
public void m(int i) {
|
|
|
|
}
|
|
|
|
public void test() {
|
|
m(<caret>"1");
|
|
}
|
|
}
|
|
|
|
class Ancestor {
|
|
public void m(char ch) {
|
|
|
|
}
|
|
}
|