mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
IDEA-332489 Inlining refactoring operation leads to naming conflicts GitOrigin-RevId: 2a8568a43a08848dca4101e98c966bee7382628d
18 lines
242 B
Java
18 lines
242 B
Java
class TestCase{
|
|
public void main() {
|
|
class T {
|
|
public T() {}
|
|
}
|
|
/*]*/fo<caret>o();/*[*/
|
|
}
|
|
|
|
public void foo() {
|
|
class T {
|
|
T t;
|
|
public T() {}
|
|
public T(int x) {}
|
|
}
|
|
new T();
|
|
new T(1);
|
|
}
|
|
} |