blob: a992497d5c21f46460fb2d2338beacfba32a1b39 [file] [log] [blame]
class A {
private Object b = new MyException("w");
private class <caret>MyException implements Runnable {
public MyException(String...msg){
this(new Throwable(), msg[0]);
}
public MyException(Throwable t, String msg)
{
System.out.println(msg);
}
public void run(){}
}
}