mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
IDEA-332489 Inlining refactoring operation leads to naming conflicts GitOrigin-RevId: 4e239def02419e7a0a30097d3b3ec8cdb69911fd
16 lines
211 B
Plaintext
16 lines
211 B
Plaintext
class TestCase{
|
|
public void main() {
|
|
class T1 {
|
|
public T1() {}
|
|
}
|
|
class T3 {
|
|
T3 t;
|
|
public T3() {}
|
|
}
|
|
class T2 {
|
|
T2 t;
|
|
public T2() {}
|
|
}
|
|
}
|
|
|
|
} |