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