mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
IDEA-332489 Inlining refactoring operation leads to naming conflicts GitOrigin-RevId: 2a8568a43a08848dca4101e98c966bee7382628d
16 lines
223 B
Plaintext
16 lines
223 B
Plaintext
class TestCase{
|
|
public void main() {
|
|
class T {
|
|
public T() {}
|
|
}
|
|
/*]*//*[*/
|
|
class T1 {
|
|
T1 t;
|
|
public T1() {}
|
|
public T1(int x) {}
|
|
}
|
|
new T1();
|
|
new T1(1);
|
|
}
|
|
|
|
} |