blob: 3473703969192a7f82b4dfa81d4376b3a079b1f1 [file] [log] [blame]
public class Bug562056 {
Object handler = "Hello bug 562056";
public static void main(String[] args) {
(new Bug562056()).run();
}
private Runnable r = () -> {
String string = handler.toString(); // breakpoint here, inspect handler.toString()
System.out.println(string);
};
public void run() {
r.run();
}
}