blob: b252b8af1cd3e00eea77f72141dbdcd7c293e027 [file] [log] [blame]
import java.util.logging.*;
class LoggerInitializedWithForeignClass {
void foo() {
new Object() {
void bar() {
Logger.getLogger(LoggerInitializedWithForeignClass.class.getName());
Logger.getLogger(<warning descr="Logger initialized with foreign class 'String.class'">String.class</warning>.getName());
}
};
}
}