mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
IDEA-345098 GitOrigin-RevId: c6d27cb77582974061d768c2fec7837ef9178d70
15 lines
234 B
Java
15 lines
234 B
Java
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
public class A extends Int {
|
|
public static class B {
|
|
void foo() {
|
|
lo<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
interface Int {
|
|
final Logger log = LoggerFactory.getLogger(Int.class);
|
|
} |