mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
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);
|
|
} |