mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 06:27:54 +07:00
the current behavior is not transitive as occurrences inside anonymous when selected outside were detected (IDEA-174339)
14 lines
245 B
Java
14 lines
245 B
Java
|
|
class Bug {
|
|
Bug(String s) {}
|
|
|
|
void m(String s) {
|
|
final String str = s.substring(1);
|
|
new Bug(str) {
|
|
@Override
|
|
public String toString() {
|
|
return str;
|
|
}
|
|
};
|
|
}
|
|
} |