mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
the current behavior is not transitive as occurrences inside anonymous when selected outside were detected (IDEA-174339)
13 lines
247 B
Java
13 lines
247 B
Java
|
|
class Bug {
|
|
Bug(String s) {}
|
|
|
|
void m(String s) {
|
|
new Bug(s.substring(1)) {
|
|
@Override
|
|
public String toString() {
|
|
return <selection>s.substring(1)</selection>;
|
|
}
|
|
};
|
|
}
|
|
} |